(marbles: string, values?: MarbleValues<T>, error?: unknown)
| 47 | } |
| 48 | |
| 49 | cold<T = string>(marbles: string, values?: MarbleValues<T>, error?: unknown): TestColdObservable<T> { |
| 50 | return createColdTestObservable(this.controller, parseMarbles(marbles, values, error)); |
| 51 | } |
| 52 | |
| 53 | hot<T = string>(marbles: string, values?: MarbleValues<T>, error?: unknown): TestHotObservable<T> { |
| 54 | return createHotTestObservable(this.controller, parseMarbles(marbles, values, error, { hot: true })); |
nothing calls this directly
no test coverage detected