tests: run playwright e2e fully parallel (#8313)

This commit is contained in:
Bijin A B
2026-06-19 19:40:24 +05:30
committed by GitHub
parent 942f995717
commit 6136d3ac62
18 changed files with 43 additions and 41 deletions

View File

@@ -1,7 +1,7 @@
import { test, expect } from '../../../playwright';
import { closeAllCollections, createCollection } from '../../utils/page';
test.describe('Copy and Paste Folders', () => {
test.describe.serial('Copy and Paste Folders', () => {
test.afterAll(async ({ page }) => {
await closeAllCollections(page);
});

View File

@@ -1,7 +1,7 @@
import { test, expect } from '../../../playwright';
import { closeAllCollections, createCollection, createRequest } from '../../utils/page';
test.describe('Copy and Paste Requests', () => {
test.describe.serial('Copy and Paste Requests', () => {
test.afterAll(async ({ page }) => {
await closeAllCollections(page);
});

View File

@@ -1,7 +1,7 @@
import { test, expect } from '../../../playwright';
import { closeAllCollections, createCollection } from '../../utils/page';
test.describe('Copy and Paste with Keyboard Shortcuts', () => {
test.describe.serial('Copy and Paste with Keyboard Shortcuts', () => {
test.afterAll(async ({ page }) => {
await closeAllCollections(page);
});