()
| 68 | |
| 69 | it('should be possible to create a functional effect', () => { |
| 70 | const source = () => of({ type: 'a' }); |
| 71 | const effect = createEffect(source, { functional: true }); |
| 72 | |
| 73 | expect(effect).toBe(source); |
no outgoing calls
no test coverage detected