forked from opentiny/tiny-vue
8 lines
318 B
TypeScript
8 lines
318 B
TypeScript
import { test, expect } from '@playwright/test'
|
|
|
|
test('滚动时间间隔', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('scroll-text#scroll-time')
|
|
await expect(page.locator('.tiny-scroll-text__content > div')).toHaveCSS('animation-duration', '10s')
|
|
})
|