Skip to content

Commit ba84e82

Browse files
committed
chore(github workflows): ci and e2e tests: try updating to node 20
1 parent fbde975 commit ba84e82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const useWebServer = process.env.NO_WEB_SERVER !== 'true';
99
*/
1010
export default defineConfig({
1111
testDir: './src',
12-
testMatch: /.*\.e2e\.(spec\.)?ts/,
12+
testMatch: /\.e2e\.(spec\.)?ts$/,
1313
/* Run tests in files in parallel */
1414
fullyParallel: true,
1515
/* Fail the build on CI if you accidentally left test.only in the source code. */
@@ -57,7 +57,7 @@ export default defineConfig({
5757
&& {
5858
webServer: {
5959
command: 'npm run preview',
60-
url: 'http://127.0.0.1:5050',
60+
url: 'http://localhost:5050',
6161
reuseExistingServer: !isCI,
6262
},
6363
}

0 commit comments

Comments
 (0)