chore: bump timeouts in ui mode tests (#22526)

This commit is contained in:
Pavel Feldman 2023-04-20 16:47:08 -07:00 committed by GitHub
parent 7c89572a53
commit d9a7aa584c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ test('should merge trace events', async ({ runUITest, server }) => {
/expect\.toBe[\d.]+m?s/,
/locator\.clickgetByRole\('button'\)[\d.]+m?s/,
/expect\.toBe[\d.]+m?s/,
]);
], { timeout: 15000 });
});
test('should locate sync assertions in source', async ({ runUITest, server }) => {
@ -60,7 +60,7 @@ test('should locate sync assertions in source', async ({ runUITest, server }) =>
await expect(
page.locator('.CodeMirror .source-line-running'),
'check source tab',
).toHaveText('4 expect(1).toBe(1);');
).toHaveText('4 expect(1).toBe(1);', { timeout: 15000 });
});
test('should show snapshots for sync assertions', async ({ runUITest, server }) => {