Преглед изворни кода

Changed setTimeout value of failing test on travis.

Oskar Wróbel пре 8 година
родитељ
комит
8d80590218
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      packages/ckeditor5-ui/tests/toolbar/contextualtoolbar.js

+ 2 - 2
packages/ckeditor5-ui/tests/toolbar/contextualtoolbar.js

@@ -93,13 +93,13 @@ describe( 'ContextualToolbar', () => {
 				// Still not yet.
 				sinon.assert.notCalled( spy );
 
-				// Another 100 ms waiting.
+				// Another 101 ms waiting.
 				setTimeout( () => {
 					// And here it is.
 					sinon.assert.calledOnce( spy );
 					done();
 				}, 100 );
-			}, 100 );
+			}, 101 );
 		}, 100 );
 	} );