We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a441ecf commit 30a9ca2Copy full SHA for 30a9ca2
packages/jest-runtime/src/__tests__/runtime_jest_fn.js
@@ -47,7 +47,7 @@ describe('Runtime', () => {
47
});
48
49
describe('jest.clearAllMocks', () => {
50
- it('clears all mocks', () => {
+ it('clears all mocks', () =>
51
createRuntime(__filename).then(runtime => {
52
const root = runtime.requireModule(runtime.__mockRootPath);
53
@@ -64,7 +64,6 @@ describe('Runtime', () => {
64
65
expect(mock1).not.toBeCalled();
66
expect(mock2).not.toBeCalled();
67
- });
68
+ }));
69
70
0 commit comments