forked from PluralFlux/PluralFlux
12 lines
230 B
JavaScript
12 lines
230 B
JavaScript
describe('commands', () => {
|
|
|
|
beforeEach(() => {
|
|
jest.resetModules();
|
|
jest.clearAllMocks();
|
|
})
|
|
|
|
afterEach(() => {
|
|
// restore the spy created with spyOn
|
|
jest.restoreAllMocks();
|
|
});
|
|
}) |