blob: fa597a863b164d25af8973d6c1c5138f35346f8c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { log } from "..";
jest.spyOn(global.console, "log");
describe("logger", () => {
it("prints a message", () => {
log("hello");
expect(console.log).toBeCalled();
});
});
|