tiny-vue/examples/sites/demos/pc/app/scroll-text/scroll-time.spec.ts

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')
})