UNPKG

e2ed

Version:

E2E testing framework over Playwright

15 lines (11 loc) 253 B
import {PageRoute} from 'e2ed'; import type {Language} from 'autotests/types'; type Params = Readonly<{language: Language}>; /** * Route of the Main page. */ export class Main extends PageRoute<Params> { getPath(): string { return '/'; } }