We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f46f89b commit b7f6dacCopy full SHA for b7f6dac
playground/e2e/direction.spec.ts
@@ -3,7 +3,7 @@ import { ANIMATION_DURATION } from './constants'
3
import { openDrawer } from './helpers'
4
5
test.describe('Direction tests', () => {
6
- test.describe('default direction (bottom)', () => {
+ test.describe('direction - bottom (default)', () => {
7
test.beforeEach(async ({ page }) => {
8
await page.goto('/test/direction')
9
})
@@ -90,7 +90,7 @@ test.describe('Direction tests', () => {
90
await openDrawer(page)
91
await page.hover('[vaul-drawer]')
92
await page.mouse.down()
93
- await page.mouse.move(0, -200)
+ await page.mouse.move(0, 100)
94
await page.mouse.up()
95
await page.waitForTimeout(ANIMATION_DURATION)
96
await expect(page.getByTestId('content')).not.toBeVisible()
0 commit comments