added indexing for different UUIDs

This commit is contained in:
lotte
2018-10-19 16:07:07 +02:00
parent ec5f977dd2
commit 5c12e2d995
12 changed files with 101 additions and 43 deletions

View File

@@ -170,11 +170,11 @@ describe('RequestService', () => {
it('should return an Observable of undefined', () => {
const result = service.getByUUID(testUUID);
const expected = cold('b', {
b: undefined
});
// const expected = cold('b', {
// b: undefined
// });
expect(result).toBeObservable(expected);
scheduler.expectObservable(result).toBe('b', {b: undefined});
});
});