test boundary refactoring and main() invocation (0826)
This commit is contained in:
@ -55,3 +55,5 @@ export function main() {
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
main();
|
||||
|
@ -9,8 +9,8 @@
|
||||
import {DefaultIterableDiffer, DefaultIterableDifferFactory} from '@angular/core/src/change_detection/differs/default_iterable_differ';
|
||||
import {afterEach, beforeEach, ddescribe, describe, expect, iit, it, xit} from '@angular/core/testing/testing_internal';
|
||||
|
||||
import {ListWrapper} from '../../../src/facade/collection';
|
||||
import {NumberWrapper} from '../../../src/facade/lang';
|
||||
import {ListWrapper} from '@angular/facade/src/collection';
|
||||
import {NumberWrapper} from '@angular/facade/src/lang';
|
||||
import {TestIterable} from '../../change_detection/iterable';
|
||||
import {iterableChangesAsString} from '../../change_detection/util';
|
||||
|
||||
@ -595,3 +595,5 @@ export function main() {
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
main();
|
||||
|
@ -227,3 +227,5 @@ export function main() {
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
main();
|
||||
|
@ -69,3 +69,5 @@ export function main() {
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
main();
|
||||
|
@ -6,7 +6,7 @@
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
import {getSymbolIterator} from '../../src/facade/lang';
|
||||
import {getSymbolIterator} from '@angular/facade/src/lang';
|
||||
|
||||
export class TestIterable {
|
||||
list: number[];
|
||||
|
@ -6,7 +6,7 @@
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
import {isBlank} from '../../src/facade/lang';
|
||||
import {isBlank} from '@angular/facade/src/lang';
|
||||
|
||||
export function iterableChangesAsString(
|
||||
{collection = [] as any, previous = [] as any, additions = [] as any, moves = [] as any,
|
||||
|
Reference in New Issue
Block a user