Files
nimbus/tests/E2E/tests/fixtures.ts
Mazen Touati e1b844cee0 feat(history): add history viewer and rewind (#38)
* 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
2026-01-17 20:50:00 +01:00

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';