Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1076,7 +1076,7 @@ describe('Mouse interactions', () => {
// Verify that the wrapper function has not been called yet
expect(wrapperFn).toHaveBeenCalledTimes(0)

// Click the button inside the the Dialog
// Click the button inside the Dialog
await click(getByText('Inside'))

// Verify it is closed
Expand Down Expand Up @@ -1119,7 +1119,7 @@ describe('Mouse interactions', () => {
// Verify it is open
assertDialog({ state: DialogState.Visible })

// Click the button inside the the Dialog
// Click the button inside the Dialog
await click(getByText('Inside'))

// Verify it is still open
Expand Down
4 changes: 2 additions & 2 deletions packages/@headlessui-vue/src/components/dialog/dialog.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1821,7 +1821,7 @@ describe('Mouse interactions', () => {
// Verify that the wrapper function has not been called yet
expect(wrapperFn).toHaveBeenCalledTimes(0)

// Click the button inside the the Dialog
// Click the button inside the Dialog
await click(getByText('Inside'))

// Verify it is closed
Expand Down Expand Up @@ -1864,7 +1864,7 @@ describe('Mouse interactions', () => {
// Verify it is open
assertDialog({ state: DialogState.Visible })

// Click the button inside the the Dialog
// Click the button inside the Dialog
await click(getByText('Inside'))

// Verify it is still open
Expand Down