
* feat: introduce playwright * test: migrate apps folder to playwright (#1201) * test: rewrite connections tests with playwright (#1203) * test: rewrite executions tests with playwright (#1207) * test: rewrite flow editor tests with playwright (#1212) * test(flow-editor): rewrite tests using serial mode (#1218) * test: update custom connection creation paths * test: move login logic to page fixture * test: remove cypress tests and deps --------- Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
18 lines
553 B
JavaScript
18 lines
553 B
JavaScript
// @ts-check
|
|
const { test, expect } = require('../../fixtures/index');
|
|
|
|
test.describe('Executions page', () => {
|
|
test.beforeEach(async ({ page, executionsPage }) => {
|
|
await page.getByTestId('executions-page-drawer-link').click();
|
|
});
|
|
|
|
test('displays executions', async ({ page, executionsPage }) => {
|
|
await page.getByTestId('executions-loader').waitFor({
|
|
state: 'detached',
|
|
});
|
|
await expect(page.getByTestId('execution-row').first()).toBeVisible();
|
|
|
|
await executionsPage.screenshot({ path: 'Executions.png' });
|
|
});
|
|
});
|