MCPcopy Create free account
hub / github.com/ReactiveX/rxjs / cold

Method cold

packages/test/src/context.ts:49–51  ·  view source on GitHub ↗
(marbles: string, values?: MarbleValues<T>, error?: unknown)

Source from the content-addressed store, hash-verified

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 }));

Callers

nothing calls this directly

Calls 2

createColdTestObservableFunction · 0.85
parseMarblesFunction · 0.85

Tested by

no test coverage detected