forked from opentiny/tiny-vue
9 lines
334 B
TypeScript
9 lines
334 B
TypeScript
import { test, expect } from '@playwright/test'
|
|
|
|
test('定制弹框不显示的内容', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('user-contact#not-displayed-content')
|
|
const noneBox = page.locator('.no-arrow')
|
|
await expect(noneBox).toHaveCSS('display', 'none')
|
|
})
|