Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jacekradko committed Oct 11, 2024
1 parent f72f7be commit e6d0f4a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 23 deletions.
16 changes: 0 additions & 16 deletions packages/nextjs/jest.config.js

This file was deleted.

1 change: 0 additions & 1 deletion packages/nextjs/jest.setup.js

This file was deleted.

4 changes: 1 addition & 3 deletions packages/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@
"lint:attw": "attw --pack . --ignore-rules no-resolution unexpected-module-syntax",
"lint:publint": "publint",
"publish:local": "npx yalc push --replace --sig",
"test": "vitest",
"test:cache:clear": "jest --clearCache --useStderr",
"test:ci": "jest --maxWorkers=70%"
"test": "vitest"
},
"dependencies": {
"@clerk/backend": "1.13.9",
Expand Down
4 changes: 2 additions & 2 deletions packages/nextjs/src/server/__tests__/clerkClient.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ describe('clerkClient', () => {
sdkMetadata: {
environment: 'test',
name: '@clerk/nextjs',
version: '1',
version: '0.0.0-test',
},
secretKey: 'TEST_SECRET_KEY',
telemetry: {
debug: false,
disabled: false,
},
userAgent: '@clerk/nextjs@1',
userAgent: '@clerk/nextjs@0.0.0-test',
});
});
});
2 changes: 1 addition & 1 deletion packages/nextjs/vitest.setup.mts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { beforeAll } from 'vitest';

globalThis.PACKAGE_NAME = '@clerk/nextjs';
globalThis.PACKAGE_VERSION = '1';
globalThis.PACKAGE_VERSION = '0.0.0-test';

beforeAll(() => {});

0 comments on commit e6d0f4a

Please sign in to comment.