chore: e2e-tests GitHub Action update

This commit is contained in:
pit
2023-09-27 10:11:32 +01:00
parent e82c12154b
commit f057666776
2 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,7 @@ setup('authenticate', async ({ page }: { page: Page }) => {
await page.getByLabel('Password', { exact: true }).fill(password);
await page.getByRole('button', { name: 'Sign In' }).click();
await page.waitForURL('/documents');
await expect(page).toHaveURL('/documents');
await page.context().storageState({ path: STORAGE_STATE });
});