Skip to content

Commit ae95b94

Browse files
committed
debug generic
1 parent 0e21635 commit ae95b94

File tree

4 files changed

+19
-17
lines changed

4 files changed

+19
-17
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -296,22 +296,21 @@ jobs:
296296
strategy:
297297
fail-fast: false
298298
matrix:
299-
test-name:
300-
[
299+
test-name: [
301300
"generic",
302-
"express",
303-
"ap-flows",
304-
"localhost",
305-
"sessions",
306-
"sessions:staging",
307-
"handshake",
308-
"handshake:staging",
309-
"astro",
310-
"tanstack-react-start",
311-
"vue",
312-
"nuxt",
313-
"react-router",
314-
"custom",
301+
# "express",
302+
# "ap-flows",
303+
# "localhost",
304+
# "sessions",
305+
# "sessions:staging",
306+
# "handshake",
307+
# "handshake:staging",
308+
# "astro",
309+
# "tanstack-react-start",
310+
# "vue",
311+
# "nuxt",
312+
# "react-router",
313+
# "custom",
315314
]
316315
test-project: ["chrome"]
317316
include:

integration/templates/react-vite/src/main.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ const Root = () => {
3535
routerPush={(to: string) => navigate(to)}
3636
routerReplace={(to: string) => navigate(to, { replace: true })}
3737
appearance={{
38+
colors: {
39+
colorPrimary: 'red',
40+
},
3841
layout: {
3942
showOptionalFields: true,
4043
},
@@ -45,6 +48,7 @@ const Root = () => {
4548
: undefined,
4649
}}
4750
>
51+
is this the correct fuking app?
4852
<Outlet />
4953
</ClerkProvider>
5054
);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"test:integration:deployment:nextjs": "pnpm playwright test --config integration/playwright.deployments.config.ts",
4141
"test:integration:expo-web:disabled": "E2E_APP_ID=expo.expo-web pnpm test:integration:base --grep @expo-web",
4242
"test:integration:express": "E2E_DEBUG=1 E2E_DEBUG=1 E2E_APP_ID=express.* pnpm test:integration:base --grep @express",
43-
"test:integration:generic": "E2E_DEBUG=1 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.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",

packages/ui/src/components/SignUp/SignUpStart.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,6 @@ function SignUpStartInternal(): JSX.Element {
439439
legalAccepted={Boolean(formState.legalAccepted.checked) || undefined}
440440
/>
441441
)}
442-
hello there
443442
{shouldShowForm && (
444443
<SignUpForm
445444
handleSubmit={handleSubmit}

0 commit comments

Comments
 (0)