Explorar el Código

Tests: Skip all memory tests due to a bug after upgrading to `Chrome 74.*`. See [ckeditor/ckeditor5#1731](https://github.com/ckeditor/ckeditor5/issues/1731) for more details.

Marek Lewandowski hace 6 años
padre
commit
88ead46698
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      packages/ckeditor5-core/tests/_utils/memory.js

+ 2 - 1
packages/ckeditor5-core/tests/_utils/memory.js

@@ -30,7 +30,8 @@ const GARBAGE_COLLECTOR_TIMEOUT = 500;
  * @param {Function} callback Callback with test suit body
  */
 export function describeMemoryUsage( callback ) {
-	describe( 'memory usage', () => {
+	// Skip all memory tests due to https://github.com/ckeditor/ckeditor5/issues/1731.
+	describe.skip( 'memory usage', () => {
 		skipIfNoGarbageCollector();
 
 		beforeEach( createEditorElement );