(e2e) increase timeout doc export test

We have a test asserting lot of things on the doc
export, and it's failing on CI because of the
timeout.
We increase the timeout to make it pass.
This commit is contained in:
Anthony LC
2024-08-14 11:23:40 +02:00
committed by Anthony LC
parent 990de437ba
commit ac58341984

View File

@@ -85,6 +85,8 @@ test.describe('Doc Export', () => {
page, page,
browserName, browserName,
}) => { }) => {
test.slow();
const [randomDoc] = await createDoc(page, 'doc-editor', browserName, 1); const [randomDoc] = await createDoc(page, 'doc-editor', browserName, 1);
let body = ''; let body = '';
@@ -148,6 +150,9 @@ test.describe('Doc Export', () => {
.last() .last()
.fill('Test List 3'); .fill('Test List 3');
await page.keyboard.press('Enter');
await page.keyboard.press('Backspace');
// Add a number list // Add a number list
await page.locator('.bn-block-outer').last().click(); await page.locator('.bn-block-outer').last().click();
await page.keyboard.press('Enter'); await page.keyboard.press('Enter');