Skip to content

Commit

Permalink
chore: fix pw
Browse files Browse the repository at this point in the history
  • Loading branch information
zernonia committed Jun 16, 2024
1 parent f46f89b commit b7f6dac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playground/e2e/direction.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ANIMATION_DURATION } from './constants'
import { openDrawer } from './helpers'

test.describe('Direction tests', () => {
test.describe('default direction (bottom)', () => {
test.describe('direction - bottom (default)', () => {
test.beforeEach(async ({ page }) => {
await page.goto('/test/direction')
})
Expand Down Expand Up @@ -90,7 +90,7 @@ test.describe('Direction tests', () => {
await openDrawer(page)
await page.hover('[vaul-drawer]')
await page.mouse.down()
await page.mouse.move(0, -200)
await page.mouse.move(0, 100)
await page.mouse.up()
await page.waitForTimeout(ANIMATION_DURATION)
await expect(page.getByTestId('content')).not.toBeVisible()
Expand Down

0 comments on commit b7f6dac

Please sign in to comment.