
* test(user-interface): add tests with playwright * test: refactor UI configuration tests --------- Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
7 lines
191 B
JavaScript
7 lines
191 B
JavaScript
const path = require('node:path');
|
|
const { AuthenticatedPage } = require('./authenticated-page');
|
|
|
|
export class ExecutionsPage extends AuthenticatedPage {
|
|
screenshotPath = '/executions';
|
|
}
|