Files
notifications-admin/tests/javascripts/timeoutPopup.test.js
2023-09-13 12:44:40 -06:00

19 lines
321 B
JavaScript

const timeoutPopup = require('../../app/assets/javascripts/timeoutPopup.js');
describe('Test popup process', () => {
beforeEach(() => {
jest.useFakeTimers();
});
afterEach(() => {
jest.useRealTimers();
});
it('Test timers work', () => {
jest.runAllTimers();
});
});