Skip to content

Commit f5e886f

Browse files
committed
Fmt
1 parent 51faeb2 commit f5e886f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/components/VTour.accessibility.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -507,17 +507,17 @@ describe('VTour Component - Accessibility', () => {
507507
// Create a button and simulate Enter key on it
508508
const button = document.createElement('button');
509509
document.body.appendChild(button);
510-
510+
511511
const enterEventOnButton = new KeyboardEvent('keydown', {
512512
key: 'Enter',
513513
bubbles: true,
514514
});
515-
515+
516516
Object.defineProperty(enterEventOnButton, 'target', {
517517
value: button,
518518
enumerable: true,
519519
});
520-
520+
521521
window.dispatchEvent(enterEventOnButton);
522522
await flushVue();
523523

0 commit comments

Comments
 (0)