e2ed
Version:
E2E testing framework over Playwright
17 lines (13 loc) • 304 B
text/typescript
import {PageRoute} from 'e2ed';
import type {Url} from 'e2ed/types';
/**
* Route of the e2ed report example page.
*/
export class E2edReportExample extends PageRoute {
override getOrigin(): Url {
return 'https://joomcode.github.io' as Url;
}
getPath(): string {
return '/e2ed/';
}
}