This commit is contained in:
Adam Raine 2023-01-26 15:44:33 -08:00
Родитель ff382ce028
Коммит 7292fdbaa8
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -11,6 +11,9 @@ import {flushAllTimersAndMicrotasks, timers} from '../../test-utils.js';
import {createMockSession} from '../mock-driver.js';
describe('enableAsyncStacks()', () => {
beforeEach(() => timers.useFakeTimers());
afterEach(() => timers.dispose());
it('enables async stacks', async () => {
const mockSession = createMockSession();
mockSession.sendCommand
@ -30,9 +33,6 @@ describe('enableAsyncStacks()', () => {
});
it('enables async stacks on every main frame navigation', async () => {
timers.useFakeTimers();
after(() => timers.dispose());
const mockSession = createMockSession();
mockSession.sendCommand
.mockResponse('Debugger.enable')