From 43378da3d19afe2c294fc8bf8a4fd3d2368e121f Mon Sep 17 00:00:00 2001 From: Petter Ericson Date: Thu, 29 Jul 2021 17:31:05 +0200 Subject: [PATCH] Fix test: Rendering can take even longer it seems. --- index.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.test.js b/index.test.js index 662f9237..72a4a73a 100644 --- a/index.test.js +++ b/index.test.js @@ -103,7 +103,7 @@ describe('reductive_analysis_test_suite', () => { it('should produce a directed within ', async function () { - await page.waitForTimeout(3000); + await page.waitForTimeout(3300); await expect(page.evaluate(`$(window.mei).find('graph').attr('type')`)).resolves .toMatch(/^directed$/); });