nx/packages/angular/spec/testing-utils.spec.ts
2020-06-03 16:25:25 -04:00

27 lines
660 B
TypeScript

import { from } from 'rxjs';
import { readAll, readFirst } from '../testing/src/testing-utils';
xdescribe('TestingUtils', () => {
describe('readAll', () => {
it('should transform Observable<T> to Promise<Array<T>>', async (done) => {
const obs = from([1, 2, 3]);
const result = await readAll(obs);
expect(result).toEqual([1, 2, 3]);
done();
});
});
describe('readFirst', () => {
it('should transform first item emitted from Observable<T> to Promise<T>', async (done) => {
const obs = from([1, 2, 3]);
const result = await readFirst(obs);
expect(result).toBe(1);
done();
});
});
});