Browse Source

removed asyncTest because it is depreceated

Daniel 9 years ago
parent
commit
deb037ec8b
1 changed files with 3 additions and 2 deletions
  1. 3 2
      test/unit/editor/TestSerialization.js

+ 3 - 2
test/unit/editor/TestSerialization.js

@@ -1,13 +1,14 @@
 module( "Serialization" );
 
-asyncTest( "Test Serialization", function() {
+test( "Test Serialization", function( assert ) {
 
 	// setup
 	var editor = new Editor();
+	var done = assert.async();
 	editor.storage.init( function () {
 
 		performTests();
-		start(); // continue running other tests
+		done(); // continue running other tests
 
 	} );