mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
4b711372c5
* Tests: Adds expects for observables * Refactor: renames matcher * Chore: changed jest version and removed as dev dependency * Refactor: Changes after PR review * wip * Chore: revert * Chore: Adds jest-matcher-utils * Chore: fixed merge error * Tests: Removed inline snapshots as they are env dependent * Tests: missed a snapshot * Refactor: Removed type file after PR comments
10 lines
292 B
TypeScript
10 lines
292 B
TypeScript
import { ObservableMatchers } from './types';
|
|
import { toEmitValues } from './toEmitValues';
|
|
import { toEmitValuesWith } from './toEmitValuesWith';
|
|
import { Observable } from 'rxjs';
|
|
|
|
export const matchers: ObservableMatchers<void, Observable<any>> = {
|
|
toEmitValues,
|
|
toEmitValuesWith,
|
|
};
|