瀏覽代碼

Add memory leak test retry run if it fails.

Maciej Gołaszewski 7 年之前
父節點
當前提交
5b25542987
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      packages/ckeditor5-core/tests/_utils/memory.js

+ 4 - 0
packages/ckeditor5-core/tests/_utils/memory.js

@@ -33,6 +33,10 @@ export function testMemoryUsage( testName, editorCreator ) {
 		// This is a long-running test unfortunately.
 		this.timeout( 8000 );
 
+		// It happens from time to time that Browser will allocate additional resources and the test will fail slightly by ~100-200kB.
+		// In such scenarios another run of test should pass.
+		this.retries( 2 );
+
 		return runTest( editorCreator );
 	} );
 }