test boundary refactoring and main() invocation (0826)
This commit is contained in:
@ -27,3 +27,5 @@ export function main() {
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
main();
|
||||
|
@ -12,8 +12,8 @@ import {getDOM} from '@angular/platform-browser/src/dom/dom_adapter';
|
||||
import {DomEventsPlugin} from '@angular/platform-browser/src/dom/events/dom_events';
|
||||
import {EventManager, EventManagerPlugin} from '@angular/platform-browser/src/dom/events/event_manager';
|
||||
|
||||
import {ListWrapper, Map} from '../../../src/facade/collection';
|
||||
import {el} from '../../../testing/browser_util';
|
||||
import {ListWrapper, Map} from '@angular/facade/src/collection';
|
||||
import {el} from '@angular/platform-browser/testing/browser_util';
|
||||
|
||||
export function main() {
|
||||
var domEventPlugin: any /** TODO #9100 */;
|
||||
@ -110,3 +110,5 @@ class FakeNgZone extends NgZone {
|
||||
|
||||
runOutsideAngular(fn: any /** TODO #9100 */) { return fn(); }
|
||||
}
|
||||
|
||||
main();
|
||||
|
@ -60,3 +60,5 @@ export function main() {
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
main();
|
||||
|
@ -48,3 +48,5 @@ export function main() {
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
main();
|
||||
|
@ -9,12 +9,12 @@
|
||||
import {beforeEach, beforeEachProviders, ddescribe, describe, expect, iit, inject, it, xdescribe, xit} from '@angular/core/testing/testing_internal';
|
||||
import {el} from '@angular/platform-browser/testing/browser_util';
|
||||
|
||||
import {AnimationKeyframe, AnimationStyles} from '../../core_private';
|
||||
import {DomAnimatePlayer} from '../../src/dom/dom_animate_player';
|
||||
import {WebAnimationsDriver} from '../../src/dom/web_animations_driver';
|
||||
import {WebAnimationsPlayer} from '../../src/dom/web_animations_player';
|
||||
import {StringMapWrapper} from '../../src/facade/collection';
|
||||
import {MockDomAnimatePlayer} from '../../testing/mock_dom_animate_player';
|
||||
import {AnimationKeyframe, AnimationStyles} from '@angular/platform-browser/core_private';
|
||||
import {DomAnimatePlayer} from '@angular/platform-browser/src/dom/dom_animate_player';
|
||||
import {WebAnimationsDriver} from '@angular/platform-browser/src/dom/web_animations_driver';
|
||||
import {WebAnimationsPlayer} from '@angular/platform-browser/src/dom/web_animations_player';
|
||||
import {StringMapWrapper} from '@angular/facade/src/collection';
|
||||
import {MockDomAnimatePlayer} from '@angular/platform-browser/testing/mock_dom_animate_player';
|
||||
|
||||
class ExtendedWebAnimationsDriver extends WebAnimationsDriver {
|
||||
public log: {[key: string]: any}[] = [];
|
||||
@ -122,3 +122,5 @@ export function main() {
|
||||
function _formatOptions(player: WebAnimationsPlayer): {[key: string]: any} {
|
||||
return {'element': player.element, 'keyframes': player.keyframes, 'options': player.options};
|
||||
}
|
||||
|
||||
main();
|
||||
|
@ -9,9 +9,9 @@
|
||||
import {AsyncTestCompleter, MockAnimationPlayer, beforeEach, beforeEachProviders, ddescribe, describe, expect, iit, inject, it, xdescribe, xit} from '@angular/core/testing/testing_internal';
|
||||
import {el} from '@angular/platform-browser/testing/browser_util';
|
||||
|
||||
import {DomAnimatePlayer} from '../../src/dom/dom_animate_player';
|
||||
import {WebAnimationsPlayer} from '../../src/dom/web_animations_player';
|
||||
import {MockDomAnimatePlayer} from '../../testing/mock_dom_animate_player';
|
||||
import {DomAnimatePlayer} from '@angular/platform-browser/src/dom/dom_animate_player';
|
||||
import {WebAnimationsPlayer} from '@angular/platform-browser/src/dom/web_animations_player';
|
||||
import {MockDomAnimatePlayer} from '@angular/platform-browser/testing/mock_dom_animate_player';
|
||||
|
||||
class ExtendedWebAnimationsPlayer extends WebAnimationsPlayer {
|
||||
public domPlayer = new MockDomAnimatePlayer();
|
||||
@ -141,3 +141,5 @@ export function main() {
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
main();
|
||||
|
Reference in New Issue
Block a user