test boundary refactoring and main() invocation (0826)

This commit is contained in:
Jason Choi
2016-08-26 12:02:42 -07:00
parent 7c07bfff97
commit 23a942ddec
188 changed files with 618 additions and 315 deletions

View File

@ -158,3 +158,5 @@ export function main() {
}), 10000);
});
}
main();

View File

@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/
import {EventEmitter} from '../../../src/facade/async';
import {EventEmitter} from '@angular/facade/src/async';
export class MockEventEmitter<T> extends EventEmitter<T> {
private _nextFns: Function[] = [];

View File

@ -35,3 +35,5 @@ export function main() {
});
}
main();

View File

@ -68,3 +68,5 @@ export function main() {
}));
});
}
main();

View File

@ -10,8 +10,8 @@ import {Type} from '@angular/core';
import {NgZone} from '@angular/core/src/zone/ng_zone';
import {ClientMessageBroker, ClientMessageBrokerFactory_, UiArguments} from '@angular/platform-browser/src/web_workers/shared/client_message_broker';
import {MessageBus, MessageBusSink, MessageBusSource} from '@angular/platform-browser/src/web_workers/shared/message_bus';
import {ListWrapper, StringMapWrapper} from '../../../src/facade/collection';
import {isPresent} from '../../../src/facade/lang';
import {ListWrapper, StringMapWrapper} from '@angular/facade/src/collection';
import {isPresent} from '@angular/facade/src/lang';
import {SpyMessageBroker} from '../worker/spies';
import {MockEventEmitter} from './mock_event_emitter';