Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit f393e33

Browse files
committed
Fix tests
1 parent 409a162 commit f393e33

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/tinymce.spec.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ describe('uiTinymce', function () {
5959
expect(tinymce.get('foo')).toBeNull();
6060
});
6161

62+
// TODO: Figure out why such a large timeout is needed
6263
describe('setting a value to the model', function() {
6364
it('should update the editor', function(done) {
6465
compile();
@@ -74,7 +75,7 @@ describe('uiTinymce', function () {
7475
}
7576

7677
done();
77-
}, 20);
78+
}, 50);
7879
});
7980
it('should handle undefined gracefully', function(done) {
8081
compile();
@@ -90,7 +91,7 @@ describe('uiTinymce', function () {
9091
}
9192

9293
done();
93-
}, 20);
94+
}, 50);
9495
});
9596
it('should handle null gracefully', function(done) {
9697
compile();
@@ -106,7 +107,7 @@ describe('uiTinymce', function () {
106107
}
107108

108109
done();
109-
}, 20);
110+
}, 50);
110111
});
111112
});
112113
/*describe('using the editor', function () {

0 commit comments

Comments
 (0)