Files
keyvault/client/mocks/modules/hot-toast.ts
Bastian Wagner 819af7455b Testing
2024-11-28 16:59:23 +01:00

6 lines
123 B
TypeScript

import { map } from "rxjs";
export class HotToastService {
observe = jest.fn().mockImplementation(() => map(x => x))
};