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

PR Close #36613
This commit is contained in:
Joey Perrott
2020-04-13 16:40:21 -07:00
committed by atscott
parent 5e80e7e216
commit 698b0288be
1160 changed files with 31667 additions and 24000 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);