From b53de4e0942e93cbc5a5dd7a46b59bab56f06c92 Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Wed, 24 Jan 2024 18:13:55 +0100 Subject: [PATCH] test: dedupe test names (#11746) --- test/src/ariaqueryhandler.spec.ts | 2 +- test/src/requestinterception-experimental.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/src/ariaqueryhandler.spec.ts b/test/src/ariaqueryhandler.spec.ts index 05a856bbd87..434d01426ab 100644 --- a/test/src/ariaqueryhandler.spec.ts +++ b/test/src/ariaqueryhandler.spec.ts @@ -156,7 +156,7 @@ describe('AriaQueryHandler', () => { expect(id).toBe('mnu1'); }); - it('should find by name', async () => { + it('should find 2nd element by name', async () => { const {page} = await getTestState(); await page.setContent( ` diff --git a/test/src/requestinterception-experimental.spec.ts b/test/src/requestinterception-experimental.spec.ts index d85de4d4d69..966554fd5df 100644 --- a/test/src/requestinterception-experimental.spec.ts +++ b/test/src/requestinterception-experimental.spec.ts @@ -18,7 +18,7 @@ import type {ConsoleMessage} from 'puppeteer-core/internal/common/ConsoleMessage import {getTestState, setupTestBrowserHooks} from './mocha-utils.js'; import {isFavicon, waitEvent} from './utils.js'; -describe('request interception', function () { +describe('cooperative request interception', function () { setupTestBrowserHooks(); describe('Page.setRequestInterception', function () {