import { ColdObservable } from './src/rxjs/cold-observable'; import { HotObservable } from './src/rxjs/hot-observable'; import { Scheduler } from './src/rxjs/scheduler'; import { stripAlignmentChars } from './src/rxjs/strip-alignment-chars'; import { Subscription } from 'rxjs'; import { TestScheduler } from 'rxjs/testing'; export type ObservableWithSubscriptions = ColdObservable | HotObservable; export { Scheduler } from './src/rxjs/scheduler'; declare global { // eslint-disable-next-line @typescript-eslint/no-namespace namespace jest { interface Matchers> { toBeObservable(observable: ObservableWithSubscriptions): R; toHaveSubscriptions(marbles: string | string[]): R; toHaveNoSubscriptions(): R; toBeMarble(marble: string): R; toSatisfyOnFlush(func: () => void): R; } } } declare module 'expect' { interface Matchers> { toBeObservable(observable: ObservableWithSubscriptions): R; toHaveSubscriptions(marbles: string | string[]): R; toHaveNoSubscriptions(): R; toBeMarble(marble: string): R; toSatisfyOnFlush(func: () => void): R; } } export function hot(marbles: string, values?: object, error?: object): HotObservable { return new HotObservable(stripAlignmentChars(marbles), values, error); } export function cold(marbles: string, values?: object, error?: object): ColdObservable { return new ColdObservable(stripAlignmentChars(marbles), values, error); } export function time(marbles: string): number { return Scheduler.get().createTime(stripAlignmentChars(marbles)); } export function schedule(work: () => void, delay: number): Subscription { return Scheduler.get().schedule(work, delay); } const dummyResult = { message: () => '', pass: true, }; expect.extend({ toHaveSubscriptions(actual: ObservableWithSubscriptions, marbles: string | string[]) { const sanitizedMarbles = Array.isArray(marbles) ? marbles.map(stripAlignmentChars) : stripAlignmentChars(marbles); Scheduler.get().expectSubscriptions(actual.getSubscriptions()).toBe(sanitizedMarbles); return dummyResult; }, toHaveNoSubscriptions(actual: ObservableWithSubscriptions) { Scheduler.get().expectSubscriptions(actual.getSubscriptions()).toBe([]); return dummyResult; }, toBeObservable(actual, expected: ObservableWithSubscriptions) { Scheduler.get().expectObservable(actual).toBe(expected.marbles, expected.values, expected.error); return dummyResult; }, toBeMarble(actual: ObservableWithSubscriptions, marbles: string) { Scheduler.get().expectObservable(actual).toBe(stripAlignmentChars(marbles)); return dummyResult; }, toSatisfyOnFlush(actual: ObservableWithSubscriptions, func: () => void) { Scheduler.get().expectObservable(actual); // tslint:disable:no-string-literal const flushTests = Scheduler.get()['flushTests']; flushTests[flushTests.length - 1].ready = true; onFlush.push(func); return dummyResult; }, }); let onFlush: (() => void)[] = []; beforeEach(() => { Scheduler.init(); onFlush = []; }); afterEach(() => { Scheduler.get().run(() => { TestScheduler.frameTimeFactor = 10; }); while (onFlush.length > 0) { onFlush.shift()?.(); } Scheduler.reset(); });