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

@@ -20,7 +20,7 @@ const hexToRgb = (hex: string): string => {
return `rgb(${r}, ${g}, ${b})`;
};
test.describe('Color Picker Tests', () => {
test.describe.serial('Color Picker Tests', () => {
test.afterAll(async ({ pageWithUserData: page }) => {
await closeAllCollections(page);
});