6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
import { map } from "rxjs";
|
|
|
|
export class HotToastService {
|
|
observe = jest.fn().mockImplementation(() => map(x => x))
|
|
};
|