Skip to content

Commit 65394d8

Browse files
committed
fix testes
1 parent a932bcc commit 65394d8

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

packages/clerk-js/src/core/resources/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ export * from './User';
1818
export * from './Verification';
1919
export * from './Waitlist';
2020
export * from './Web3Wallet';
21+

packages/clerk-js/src/core/resources/internal.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Formatting for this file has been disabled in .prettierignore
3+
* as we need to ensure that the import/export order always remains the same
4+
*/
15
export type { Clerk } from '../clerk';
26
export * from './APIKey';
37
export * from './AuthConfig';
@@ -42,3 +46,4 @@ export * from './UserSettings';
4246
export * from './Verification';
4347
export * from './Waitlist';
4448
export * from './Web3Wallet';
49+

packages/clerk-js/src/utils/__tests__/errors.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import type { ClerkAPIResponseError } from '@clerk/shared/error';
12
import { describe, expect, it } from 'vitest';
23

3-
import type { ClerkAPIResponseError } from '../../core/resources/Error';
44
import { isError } from '../errors';
55

66
describe('isError(err, code)', () => {

0 commit comments

Comments
 (0)