Skip to content

Commit 779e115

Browse files
committed
test: Run playwright tests in parallel
1 parent 97c6851 commit 779e115

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

packages/integration-tests/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import type { PlaywrightTestConfig } from '@playwright/test';
22

33
const config: PlaywrightTestConfig = {
44
retries: 0,
5-
workers: 3,
5+
fullyParallel: true,
66
};
77
export default config;

packages/integration-tests/suites/replay/privacyDefault/test.ts-snapshots/privacy.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@
3232
"type": 2,
3333
"tagName": "link",
3434
"attributes": {
35-
"rel": "icon",
36-
"type": "image/png",
37-
"href": "file://assets/icon/favicon.png"
35+
"rr_width": "[0-50]px",
36+
"rr_height": "[0-50]px"
3837
},
3938
"childNodes": [],
4039
"id": 6

packages/nextjs/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const config: PlaywrightTestConfig = {
66
use: {
77
baseURL: 'http://localhost:3000',
88
},
9-
workers: 3,
9+
fullyParallel: true,
1010
webServer: {
1111
cwd: path.join(__dirname, 'test', 'integration'),
1212
command: 'yarn start',

packages/remix/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const config: PlaywrightTestConfig = {
55
use: {
66
baseURL: 'http://localhost:3000',
77
},
8-
workers: 3,
8+
fullyParallel: true,
99
webServer: {
1010
command: '(cd test/integration/ && yarn build && yarn start)',
1111
port: 3000,

0 commit comments

Comments
 (0)