You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: playwright.config.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ export default defineConfig({
10
10
retries: process.env.CI ? 2 : 0,
11
11
workers: process.env.CI ? '100%' : '50%',
12
12
reporter: 'html',
13
-
testIgnore: process.env.E2E_TESTING_ENV==='production' ? '**/sign-up.spec.js' : undefined,// exclude sign-up test from prod for now until we can decide on a strategy for cleaning up users created by the test
13
+
testIgnore: process.env.E2E_TESTING_ENV==='production' ? ['auth/sign-up.spec.js','**/create.spec.js'] : undefined,// exclude sign-up test from prod for now until we can decide on a strategy for cleaning up users created by the test
0 commit comments