mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 21:47:38 +00:00
In this PR, - current basic E2E tests are fixed, and some were added, covering some basic scenarios - some tests avec been commented out, until we decide whether they are worth fixing The next steps are - evaluate the flakiness of the tests. Once they've proved not to be flaky, we should add more tests + re-write the current ones not using aria-label (cf @lucasbordeau indication). - We will add them back to the development flow
33 lines
1 KiB
TypeScript
33 lines
1 KiB
TypeScript
import { test as base } from '@playwright/test';
|
|
import path from 'path';
|
|
|
|
const date = new Date();
|
|
|
|
export const test = base.extend<{ screenshotHook: void }>({
|
|
screenshotHook: [
|
|
async ({ page, browserName }, use, workerInfo) => {
|
|
// here everything is the same as beforeEach()
|
|
// goto is to go to website as login setup saves the cookies of logged-in user, not the state of browser
|
|
await page.goto('/');
|
|
await use(); // here is the code of test
|
|
// here everything is the same as afterEach()
|
|
// automatic fixture of making screenshot after each test
|
|
await page.screenshot({
|
|
path: path.resolve(
|
|
__dirname,
|
|
'..',
|
|
'..',
|
|
'results',
|
|
'screenshots',
|
|
`${workerInfo.project.name}`,
|
|
browserName,
|
|
`${date.toISOString()}.png`,
|
|
),
|
|
});
|
|
},
|
|
{ auto: true },
|
|
],
|
|
baseURL: process.env.LINK ? new URL(process.env.LINK).origin : 'http://localhost:3001',
|
|
});
|
|
|
|
export { expect } from '@playwright/test';
|