jam-my-stack/test/mocks.test.js

9 lines
164 B
JavaScript
Raw Normal View History

2021-03-05 09:04:42 +01:00
jest.mock('got');
const gotmock = require("got");
test("got is mocked", async () => {
const data = await gotmock("bla");
expect(data).toMatch(/brainbaking/)
})