forked from opentiny/tiny-vue
8 lines
297 B
TypeScript
8 lines
297 B
TypeScript
import { test, expect } from '@playwright/test'
|
|
|
|
test('disabled', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('autocomplete#disabled')
|
|
await expect(page.locator('//div[@class="tiny-input is-disabled"]')).toHaveClass(/disabled/)
|
|
})
|