* feat: video recorder on failures * feat: fixture for sample page class * feat: video recorder on failures * feat: fixture for sample page class * feat: video recorder on failures * feat: fixture for sample page class * feat: Apply Screenshot on failures * feat: set timeout by default * chore: clean up import * feat: video recorder on failures * feat: fixture for sample page class * feat: add wait for app update * chore: correct timeout * chore: correct timeout * chore: test timeout * chore: test timeout * chore: test timeout * chore: browser context config * chore: temporally disable the video recorder to bypass issue
12 lines
366 B
TypeScript
12 lines
366 B
TypeScript
import { expect } from '@playwright/test'
|
|
|
|
import { test, page, TIMEOUT } from '../config/fixtures'
|
|
|
|
test('shows settings', async () => {
|
|
await page.getByTestId('Settings').first().click({
|
|
timeout: TIMEOUT,
|
|
})
|
|
const settingDescription = page.getByTestId('testid-setting-description')
|
|
await expect(settingDescription).toBeVisible({ timeout: TIMEOUT })
|
|
})
|