From c70397b279f5711355b4f89291af2f5d92f5ca8c Mon Sep 17 00:00:00 2001 From: Felix Habib Date: Wed, 5 Mar 2025 16:18:45 +1100 Subject: [PATCH] increase delay in failing test --- cypress/e2e/editor.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/editor.cy.ts b/cypress/e2e/editor.cy.ts index 6521ce15..df9e2498 100644 --- a/cypress/e2e/editor.cy.ts +++ b/cypress/e2e/editor.cy.ts @@ -21,7 +21,7 @@ describe('Editor', () => { }); it('autocompletes', () => { - typeCode('', 100); + typeCode('', 150); assertFirstFrameContains('Foo'); assertCodePaneContains(''); });