Skip to content

Commit ef29072

Browse files
committed
chore: clean up changeset and increase async test timeout
1 parent 7513813 commit ef29072

2 files changed

Lines changed: 3 additions & 13 deletions

File tree

.changeset/shiny-owls-dance.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,11 @@
11
---
22
'@clerk/ui': minor
33
'@clerk/react': minor
4+
'@clerk/nextjs': minor
45
'@clerk/vue': minor
56
'@clerk/astro': minor
67
'@clerk/chrome-extension': minor
78
'@clerk/shared': minor
89
---
910

10-
Add `ui` prop to ClerkProvider for passing `@clerk/ui`
11-
12-
Usage:
13-
```tsx
14-
import { ui } from '@clerk/ui';
15-
16-
<ClerkProvider ui={ui}>
17-
...
18-
</ClerkProvider>
19-
```
20-
21-
**Migration note**: If you were previously using the internal `clerkUiCtor` prop, migrate to the new `ui` prop by importing `ui` from `@clerk/ui`.
11+
Add `ui` prop to `ClerkProvider` for passing `@clerk/ui`

packages/clerk-js/vitest.setup.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { TextDecoder, TextEncoder } from 'node:util';
66
import { cleanup, configure } from '@testing-library/react';
77
import { afterAll, afterEach, beforeAll, beforeEach, vi } from 'vitest';
88

9-
configure({});
9+
configure({ asyncUtilTimeout: 5000 });
1010

1111
// Track all timers created during tests to clean them up
1212
const activeTimers = new Set<ReturnType<typeof setTimeout>>();

0 commit comments

Comments
 (0)