Skip to content

Commit b7f6dac

Browse files
committed
chore: fix pw
1 parent f46f89b commit b7f6dac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

playground/e2e/direction.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ANIMATION_DURATION } from './constants'
33
import { openDrawer } from './helpers'
44

55
test.describe('Direction tests', () => {
6-
test.describe('default direction (bottom)', () => {
6+
test.describe('direction - bottom (default)', () => {
77
test.beforeEach(async ({ page }) => {
88
await page.goto('/test/direction')
99
})
@@ -90,7 +90,7 @@ test.describe('Direction tests', () => {
9090
await openDrawer(page)
9191
await page.hover('[vaul-drawer]')
9292
await page.mouse.down()
93-
await page.mouse.move(0, -200)
93+
await page.mouse.move(0, 100)
9494
await page.mouse.up()
9595
await page.waitForTimeout(ANIMATION_DURATION)
9696
await expect(page.getByTestId('content')).not.toBeVisible()

0 commit comments

Comments
 (0)