UNPKG

@rxjs-stuff/marbles

Version:

A set of plugins that provide a natural feeling integration with Mocha and Chai for RxJS "marbles" testing.

10 lines (9 loc) 293 B
import { AssertDeepEqualFn, MarblesHelpers } from '@rxjs-stuff/marbles'; export interface TestHookFn { (helpers: MarblesHelpers, context: any): void; } export interface MochaMarblesConfig { assertDeepEqual: AssertDeepEqualFn; beforeEach?: TestHookFn; afterEach?: TestHookFn; }