Skip to content

Commit 0705186

Browse files
committed
try 1
1 parent ec04365 commit 0705186

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

integration/presets/custom-flows.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const reactVite = applicationConfig()
1212
.addScript('build', 'pnpm build')
1313
.addScript('serve', 'pnpm preview')
1414
.addDependency('@clerk/react', constants.E2E_CLERK_JS_VERSION || linkPackage('react'))
15+
.addDependency('@clerk/shared', constants.E2E_CLERK_JS_VERSION || linkPackage('shared'))
1516
.addDependency('@clerk/themes', constants.E2E_CLERK_JS_VERSION || linkPackage('themes'));
1617

1718
export const customFlows = {

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@
3232
"test:cache:clear": "FORCE_COLOR=1 turbo test:cache:clear --continue --concurrency=${TURBO_CONCURRENCY:-80%}",
3333
"test:integration:ap-flows": "pnpm test:integration:base --grep @ap-flows",
3434
"test:integration:astro": "E2E_APP_ID=astro.* pnpm test:integration:base --grep @astro",
35-
"test:integration:base": "pnpm playwright test --config integration/playwright.config.ts",
35+
"test:integration:base": "E2E_DEBUG=1 pnpm playwright test --config integration/playwright.config.ts",
3636
"test:integration:billing": "E2E_APP_ID=withBilling.* pnpm test:integration:base --grep @billing",
3737
"test:integration:cleanup": "pnpm playwright test --config integration/playwright.cleanup.config.ts",
38-
"test:integration:custom": "pnpm test:integration:base --grep @custom",
38+
"test:integration:custom": "E2E_DEBUG=1 pnpm test:integration:base --grep @custom",
3939
"test:integration:deployment:nextjs": "pnpm playwright test --config integration/playwright.deployments.config.ts",
4040
"test:integration:elements": "E2E_APP_ID=elements.* pnpm test:integration:base --grep @elements",
4141
"test:integration:expo-web:disabled": "E2E_APP_ID=expo.expo-web pnpm test:integration:base --grep @expo-web",
4242
"test:integration:express": "E2E_APP_ID=express.* pnpm test:integration:base --grep @express",
43-
"test:integration:generic": "E2E_APP_ID=react.vite.*,next.appRouter.withEmailCodes* pnpm test:integration:base --grep @generic",
43+
"test:integration:generic": "E2E_DEBUG=1 E2E_APP_ID=react.vite.*,next.appRouter.withEmailCodes* pnpm test:integration:base --grep @generic",
4444
"test:integration:handshake": "DISABLE_WEB_SECURITY=true E2E_APP_1_ENV_KEY=sessions-prod-1 E2E_SESSIONS_APP_1_HOST=multiple-apps-e2e.clerk.app pnpm test:integration:base --grep @handshake",
4545
"test:integration:handshake:staging": "DISABLE_WEB_SECURITY=true E2E_APP_1_ENV_KEY=clerkstage-sessions-prod-1 E2E_SESSIONS_APP_1_HOST=clerkstage-sessions-prod-1-e2e.clerk.app pnpm test:integration:base --grep @handshake",
4646
"test:integration:localhost": "pnpm test:integration:base --grep @localhost",

turbo.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@
210210
"@clerk/clerk-js#build",
211211
"@clerk/ui#build",
212212
"@clerk/backend#build",
213-
"@clerk/react#build"
213+
"@clerk/react#build",
214+
"@clerk/shared#build"
214215
],
215216
"env": ["CLEANUP", "DEBUG", "E2E_*", "INTEGRATION_INSTANCE_KEYS"],
216217
"inputs": ["integration/**"],
@@ -438,7 +439,8 @@
438439
"@clerk/clerk-js#build",
439440
"@clerk/ui#build",
440441
"@clerk/backend#build",
441-
"@clerk/react#build"
442+
"@clerk/react#build",
443+
"@clerk/shared#build"
442444
],
443445
"env": ["CLEANUP", "DEBUG", "E2E_*", "INTEGRATION_INSTANCE_KEYS"],
444446
"inputs": ["integration/**"],

0 commit comments

Comments
 (0)