test: delete tests for non-existing fastForwardTo (#31366)

The tests repeat `it.describe('fastForward'` above them.
This commit is contained in:
Yury Semikhatsky 2024-06-18 09:34:32 -07:00 committed by GitHub
parent 5fc56283a6
commit dbc54c763d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -207,34 +207,6 @@ it.describe('fastForward', () => {
});
});
it.describe('fastForwardTo', () => {
it.beforeEach(async ({ page }) => {
await page.clock.install({ time: 0 });
await page.clock.pauseAt(1000);
});
it(`ignores timers which wouldn't be run`, async ({ page, calls }) => {
await page.evaluate(async () => {
setTimeout(() => {
window.stub('should not be logged');
}, 1000);
});
await page.clock.fastForward(500);
expect(calls).toEqual([]);
});
it('pushes back execution time for skipped timers', async ({ page, calls }) => {
await page.evaluate(async () => {
setTimeout(() => {
window.stub(Date.now());
}, 1000);
});
await page.clock.fastForward(2000);
expect(calls).toEqual([{ params: [1000 + 2000] }]);
});
});
it.describe('stubTimers', () => {
it.beforeEach(async ({ page }) => {
await page.clock.install({ time: 0 });