Skip to content

Commit ec71828

Browse files
committed
chore: skip tanstack router test
1 parent 80a3018 commit ec71828

5 files changed

Lines changed: 14 additions & 15 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ jobs:
292292
'astro',
293293
'expo-web',
294294
'tanstack-react-start',
295-
'tanstack-react-router',
295+
# 'tanstack-react-router',
296296
'vue',
297297
'nuxt',
298298
'react-router',

integration/presets/react-router.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ const reactRouterNode = applicationConfig()
1313
.addScript('serve', 'pnpm start')
1414
.addDependency('@clerk/react-router', constants.E2E_CLERK_VERSION || linkPackage('react-router'));
1515

16-
// const reactRouterLibrary = applicationConfig()
17-
// .setName('react-router-library')
18-
// .useTemplate(templates['react-router-library'])
19-
// .setEnvFormatter('public', key => `VITE_${key}`)
20-
// .addScript('setup', 'pnpm install')
21-
// .addScript('dev', 'pnpm dev')
22-
// .addScript('build', 'pnpm build')
23-
// .addScript('serve', 'pnpm preview')
24-
// .addDependency('@clerk/react-router', constants.E2E_CLERK_VERSION || linkPackage('react-router'));
16+
const reactRouterLibrary = applicationConfig()
17+
.setName('react-router-library')
18+
.useTemplate(templates['react-router-library'])
19+
.setEnvFormatter('public', key => `VITE_${key}`)
20+
.addScript('setup', 'pnpm install')
21+
.addScript('dev', 'pnpm dev')
22+
.addScript('build', 'pnpm build')
23+
.addScript('serve', 'pnpm preview')
24+
.addDependency('@clerk/react-router', constants.E2E_CLERK_VERSION || linkPackage('react-router'));
2525

2626
export const reactRouter = {
2727
reactRouterNode,
28-
// reactRouterLibrary,
28+
reactRouterLibrary,
2929
} as const;

integration/templates/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const templates = {
1818
'vue-vite': resolve(__dirname, './vue-vite'),
1919
'nuxt-node': resolve(__dirname, './nuxt-node'),
2020
'react-router-node': resolve(__dirname, './react-router-node'),
21-
// 'react-router-library': resolve(__dirname, './react-router-library'),
21+
'react-router-library': resolve(__dirname, './react-router-library'),
2222
'custom-flows-react-vite': resolve(__dirname, './custom-flows-react-vite'),
2323
} as const;
2424

integration/tests/react-router/library-mode.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@ import { appConfigs } from '../../presets';
55
import type { FakeOrganization, FakeUser } from '../../testUtils';
66
import { createTestUtils } from '../../testUtils';
77

8-
test.skip('Library Mode basic tests for @react-router', () => {
8+
test.describe('Library Mode basic tests for @react-router', () => {
99
test.describe.configure({ mode: 'parallel' });
1010
let app: Application;
1111
let fakeUser: FakeUser;
1212
let fakeOrganization: FakeOrganization;
1313

1414
test.beforeAll(async () => {
15-
// @ts-expect-error: Exclude test for now
1615
app = await appConfigs.reactRouter.reactRouterLibrary.commit();
1716

1817
await app.setup();

integration/tests/tanstack-router/basic.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { FakeUser } from '../../testUtils';
55
import { createTestUtils, testAgainstRunningApps } from '../../testUtils';
66

77
testAgainstRunningApps({ withEnv: [appConfigs.envs.withEmailCodes] })(
8-
'basic tests for TanStack Router @skip-tanstack-react-router',
8+
'basic tests for TanStack Router @tanstack-react-router',
99
({ app }) => {
1010
test.describe.configure({ mode: 'parallel' });
1111

0 commit comments

Comments
 (0)