Skip to content

Commit 374aa44

Browse files
committed
fix: skip record-creating e2e tests in prod
1 parent c41fb72 commit 374aa44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playwright.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default defineConfig({
1010
retries: process.env.CI ? 2 : 0,
1111
workers: process.env.CI ? '100%' : '50%',
1212
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
1414
use: {
1515
baseURL: process.env.E2E_TESTING_URL ?? 'http://localhost:8888',
1616
trace: 'on-first-retry'

0 commit comments

Comments
 (0)