Commits
Kristof De Langhe authored 2d67b0b13ef
17 17 | redirectOn404Or401 |
18 18 | } from './operators'; |
19 19 | import { RemoteData } from '../data/remote-data'; |
20 20 | import { RemoteDataError } from '../data/remote-data-error'; |
21 21 | import { of as observableOf } from 'rxjs'; |
22 22 | import { |
23 23 | createFailedRemoteDataObject, |
24 24 | createSuccessfulRemoteDataObject |
25 25 | } from '../../shared/remote-data.utils'; |
26 26 | |
27 - | fdescribe('Core Module - RxJS Operators', () => { |
27 + | describe('Core Module - RxJS Operators', () => { |
28 28 | let scheduler: TestScheduler; |
29 29 | let requestService: RequestService; |
30 30 | const testRequestHref = 'https://rest.api/'; |
31 31 | const testRequestUUID = 'https://rest.api/'; |
32 32 | |
33 33 | const testRCEs = { |
34 34 | a: { response: { isSuccessful: true, resourceSelfLinks: ['a', 'b', 'c', 'd'] } }, |
35 35 | b: { response: { isSuccessful: false, resourceSelfLinks: ['e', 'f'] } }, |
36 36 | c: { response: { isSuccessful: undefined, resourceSelfLinks: ['g', 'h', 'i'] } }, |
37 37 | d: { response: { isSuccessful: true, resourceSelfLinks: ['j', 'k', 'l', 'm', 'n'] } }, |