We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbde975 commit ba84e82Copy full SHA for ba84e82
playwright.config.ts
@@ -9,7 +9,7 @@ const useWebServer = process.env.NO_WEB_SERVER !== 'true';
9
*/
10
export default defineConfig({
11
testDir: './src',
12
- testMatch: /.*\.e2e\.(spec\.)?ts/,
+ testMatch: /\.e2e\.(spec\.)?ts$/,
13
/* Run tests in files in parallel */
14
fullyParallel: true,
15
/* Fail the build on CI if you accidentally left test.only in the source code. */
@@ -57,7 +57,7 @@ export default defineConfig({
57
&& {
58
webServer: {
59
command: 'npm run preview',
60
- url: 'http://127.0.0.1:5050',
+ url: 'http://localhost:5050',
61
reuseExistingServer: !isCI,
62
},
63
}
0 commit comments