* feat(ui): add `input group` base component * feat(history): add history viewer and rewind * test: update selector snapshot * test: add PW base page * style: apply TS style fixes * chore(history): request history wiki * chore(history): remove unwanted symbol * chore: fix type * style: apply TS style fixes
13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
import { test as base } from '@playwright/test';
|
|
import { BasePage } from '../pages/BasePage';
|
|
|
|
export const test = base.extend<{
|
|
basePage: BasePage;
|
|
}>({
|
|
basePage: async ({ page }, use) => {
|
|
await use(new BasePage(page));
|
|
},
|
|
});
|
|
|
|
export { expect } from '@playwright/test';
|