chore: convert async describe to sync (#10238)

This commit is contained in:
Alex Rudenko 2023-05-24 14:08:36 +02:00 committed by GitHub
parent faab64e1f3
commit cf28dae775
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -591,7 +591,7 @@ describe('AriaQueryHandler', () => {
});
});
describe('queryOne (Chromium web test)', async () => {
describe('queryOne (Chromium web test)', () => {
beforeEach(async () => {
const {page} = getTestState();
await page.setContent(

View File

@ -795,7 +795,7 @@ describe('network', function () {
});
});
describe('raw network headers', async () => {
describe('raw network headers', () => {
it('Same-origin set-cookie navigation', async () => {
const {page, server} = getTestState();
@ -861,7 +861,7 @@ describe('network', function () {
});
});
describe('Page.setBypassServiceWorker', async () => {
describe('Page.setBypassServiceWorker', () => {
it('bypass for network', async () => {
const {page, server} = getTestState();