Files
PluralFlux-infra/tests/helpers/utils.test.js

16 lines
328 B
JavaScript
Raw Normal View History

2026-02-22 21:40:53 -05:00
const {enums} = require("../../src/enums");
const {utils} = require("../../src/helpers/utils.js");
2026-02-22 21:40:53 -05:00
describe('utils', () => {
beforeEach(() => {
jest.resetModules();
jest.clearAllMocks();
})
afterEach(() => {
// restore the spy created with spyOn
jest.restoreAllMocks();
});
})