build: reformat repo to new clang@1.4.0 (#36628)

PR Close #36628
This commit is contained in:
Joey Perrott
2020-04-13 17:43:52 -07:00
committed by atscott
parent 4b3f9ac739
commit 26f49151e7
1163 changed files with 31727 additions and 24036 deletions

View File

@ -13,16 +13,23 @@ describe('Observable.fromPromise', () => {
let log: any[];
let observable1: any;
beforeEach(() => { log = []; });
beforeEach(() => {
log = [];
});
it('fromPromise func callback should run in the correct zone', asyncTest((done: any) => {
const constructorZone1: Zone = Zone.current.fork({name: 'Constructor Zone1'});
const promiseZone1: Zone = Zone.current.fork({name: 'Promise Zone1'});
const subscriptionZone: Zone = Zone.current.fork({name: 'Subscription Zone'});
let res: any;
let promise: any =
promiseZone1.run(() => { return new Promise((resolve, reject) => { res = resolve; }); });
observable1 = constructorZone1.run(() => { return from(promise); });
let promise: any = promiseZone1.run(() => {
return new Promise((resolve, reject) => {
res = resolve;
});
});
observable1 = constructorZone1.run(() => {
return from(promise);
});
subscriptionZone.run(() => {
observable1.subscribe(
@ -32,7 +39,10 @@ describe('Observable.fromPromise', () => {
expect(log).toEqual([1]);
done();
},
() => { fail('should not call error'); }, () => {});
() => {
fail('should not call error');
},
() => {});
});
res(1);