Files
notifications-admin/tests/javascripts/timeoutPopup.test.js
2023-09-27 11:47:52 -06:00

19 lines
328 B
JavaScript

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