Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cschroeter committed May 19, 2024
1 parent 64d7a3c commit 1527107
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@types/bun": "1.1.2",
"lefthook": "1.6.11",
"lefthook": "1.6.12",
"turbo": "1.13.3",
"typescript": "5.4.5"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@release-it/keep-a-changelog": "5.0.0",
"@solidjs/testing-library": "0.8.7",
"@solidjs/testing-library": "0.8.8",
"@storybook/addon-a11y": "8.1.1",
"@storybook/addon-essentials": "8.1.1",
"@testing-library/dom": "10.1.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { colorPickerAnatomy } from '@ark-ui/anatomy'
import { render, screen } from '@solidjs/testing-library'
import { render, screen, waitFor } from '@solidjs/testing-library'
import user from '@testing-library/user-event'
import { ColorPicker } from '../'
import { getExports, getParts } from '../../../setup-test'
Expand All @@ -25,8 +25,10 @@ describe('ColorPicker', () => {
expect(screen.getByTestId('positioner')).toBeInTheDocument()

await user.click(screen.getByTestId('trigger'))
expect(screen.getByTestId('positioner')).toBeInTheDocument()
}, 7000)
await waitFor(() => {
expect(screen.queryByTestId('positioner')).toBeInTheDocument()
})
})

it('should lazy mount and unmount on exit', async () => {
render(() => <ComponentUnderTest lazyMount unmountOnExit />)
Expand All @@ -37,6 +39,8 @@ describe('ColorPicker', () => {
expect(screen.getByTestId('positioner')).toBeInTheDocument()

await user.click(screen.getByTestId('trigger'))
expect(screen.queryByTestId('positioner')).not.toBeInTheDocument()
}, 7000)
await waitFor(() => {
expect(screen.queryByTestId('positioner')).not.toBeInTheDocument()
})
})
})
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@
"@testing-library/dom": "10.1.0",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/user-event": "14.5.2",
"@testing-library/vue": "8.0.3",
"@testing-library/vue": "8.1.0",
"@types/jsdom": "21.1.6",
"@types/testing-library__jest-dom": "5.14.9",
"@vitejs/plugin-vue": "5.0.4",
Expand Down
4 changes: 2 additions & 2 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@icons-pack/react-simple-icons": "9.5.0",
"@pandacss/dev": "0.39.1",
"@park-ui/panda-preset": "0.37.0",
"@shikijs/transformers": "1.5.2",
"@shikijs/transformers": "1.6.0",
"@types/node": "20.12.12",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
Expand All @@ -28,7 +28,7 @@
"react-dom": "18.3.1",
"rehype-slug": "6.0.0",
"rehype-autolink-headings": "7.1.0",
"shiki": "1.5.2",
"shiki": "1.6.0",
"typescript": "5.4.5",
"velite": "0.1.0-rc.3"
}
Expand Down

0 comments on commit 1527107

Please sign in to comment.