forked from opentiny/tiny-vue
17 lines
615 B
TypeScript
17 lines
615 B
TypeScript
import { test, expect } from '@playwright/test'
|
|
|
|
test('阻止切换', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('tabs#before-leave')
|
|
|
|
const tabs = page.locator('.tiny-tabs')
|
|
const tabItem = tabs.getByRole('tab', { name: '表单组件' })
|
|
const activeItem = page.getByRole('tab', { name: '数据组件' })
|
|
const notify = page.locator('.tiny-notify')
|
|
|
|
await expect(activeItem).toHaveClass(/is-active/)
|
|
await tabItem.click()
|
|
await expect(activeItem).toHaveClass(/is-active/)
|
|
await notify.waitFor({ state: 'attached', timeout: 100 })
|
|
})
|