add missing waits for output in display_id tests

Min RK 9 years ago
parent 0c5613b13a
commit 3c0da28764

@ -43,6 +43,7 @@ casper.notebook_test(function () {
});
this.wait_for_output(1);
this.wait_for_idle()
this.then(function () {
var outputs = get_outputs(1);
@ -64,6 +65,7 @@ casper.notebook_test(function () {
});
this.wait_for_output(2);
this.wait_for_idle();
this.then(function () {
var outputs1 = get_outputs(1);
@ -108,6 +110,7 @@ casper.notebook_test(function () {
kernel.output_callback_overrides_push(msg_id, callback_id);
});
this.wait_for_output(3);
this.wait_for_idle();
this.then(function () {
@ -137,6 +140,7 @@ casper.notebook_test(function () {
cell.execute();
});
this.wait_for_output(4);
this.wait_for_idle();
this.then(function () {

Loading…
Cancel
Save