Skip to content

Commit 5d23bd4

Browse files
committed
Merge branch 'dev' into next
2 parents 5495cca + 6683b9b commit 5d23bd4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/vuetify/src/components/VDatePicker/__tests__/VDatePicker.spec.browser.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ describe('VDatePicker', () => {
4040
await userEvent.click(await within(yearsContainer).getByText('2025'))
4141
await userEvent.click(await screen.findByTestId('month-btn'))
4242
await commands.waitStable('.v-date-picker-months')
43-
await userEvent.click(await screen.findByText('Jan'))
43+
const monthsContainer = await screen.getByCSS('.v-date-picker-months__content')
44+
await userEvent.click(await within(monthsContainer).findByText('Jan'))
4445
await commands.waitStable('.v-date-picker-month__days')
4546
await userEvent.click(await screen.findByText(7))
4647

0 commit comments

Comments
 (0)