From a9da39c61f2cd42a66df9ad3bb8d8eab00a23aff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Go=C5=82aszewski?= Date: Mon, 21 Jan 2019 12:15:31 +0100 Subject: [PATCH] Increate test timeout. --- tests/_utils/memory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/_utils/memory.js b/tests/_utils/memory.js index 1d06fc5f..fa02e357 100644 --- a/tests/_utils/memory.js +++ b/tests/_utils/memory.js @@ -27,7 +27,7 @@ export function describeMemoryUsage( callback ) { export function testMemoryUsage( testName, editorCreator ) { for ( let i = 0; i < 20; i++ ) { it.only( testName, function() { - this.timeout( 4000 ); + this.timeout( 5000 ); return runTest( editorCreator ); } );