forked from opentiny/tiny-vue
11 lines
464 B
TypeScript
11 lines
464 B
TypeScript
import { test, expect } from '@playwright/test'
|
|
|
|
test('custom-icon', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('autocomplete#custom-icon')
|
|
const prefix = page.locator('.tiny-autocomplete > .tiny-input > .tiny-input__prefix')
|
|
const suffix = page.locator('.tiny-autocomplete > .tiny-input > div > .tiny-input__suffix')
|
|
await expect(prefix).toBeVisible()
|
|
await expect(suffix).toBeVisible()
|
|
})
|