2016-07-12 16:55:06 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-07-21 20:12:00 -04:00
|
|
|
import {fakeAsync} from '@angular/core/testing/fake_async';
|
2016-07-12 16:55:06 -04:00
|
|
|
import {beforeEach, beforeEachProviders, ddescribe, describe, expect, iit, inject, it, xit} from '@angular/core/testing/testing_internal';
|
|
|
|
|
|
|
|
import {SyncAsyncResult} from '../src/util';
|
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('util', () => {
|
|
|
|
describe('SyncAsyncResult', () => {
|
|
|
|
it('async value should default to Promise.resolve(syncValue)', fakeAsync(() => {
|
|
|
|
const syncValue = {};
|
|
|
|
const sar = new SyncAsyncResult(syncValue);
|
|
|
|
sar.asyncResult.then((v: any) => expect(v).toBe(syncValue));
|
|
|
|
}));
|
|
|
|
});
|
2016-07-21 20:12:00 -04:00
|
|
|
});
|
2016-07-12 16:55:06 -04:00
|
|
|
}
|