We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2edf11 commit deb037eCopy full SHA for deb037e
1 file changed
test/unit/editor/TestSerialization.js
@@ -1,13 +1,14 @@
1
module( "Serialization" );
2
3
-asyncTest( "Test Serialization", function() {
+test( "Test Serialization", function( assert ) {
4
5
// setup
6
var editor = new Editor();
7
+ var done = assert.async();
8
editor.storage.init( function () {
9
10
performTests();
- start(); // continue running other tests
11
+ done(); // continue running other tests
12
13
} );
14
0 commit comments