##// END OF EJS Templates
don't delete casper instance on shutdown test...
don't delete casper instance on shutdown test a lunch conversation with @minrk and @takluyver lead me to just make a popup and have it be closed, instead of having to reorder the test suite so that this test always runs last. Now it doesn't matter what order the test suite runs in, and gives us a pattern for testing window closing behavior should we need it elsewhere.

File last commit:

r13283:8d246981
r13416:4c4050a7
Show More
empty_nb_arrow_keys.js
21 lines | 608 B | application/javascript | JavascriptLexer
//
// Check for errors with up and down arrow presses in an empty notebook.
//
casper.notebook_test(function () {
var result = this.evaluate(function() {
var ncells = IPython.notebook.ncells();
var i;
// Delete all cells.
for (i = 0; i < ncells; i++) {
IPython.notebook.delete_cell();
}
// Simulate the "up arrow" and "down arrow" keys.
//
IPython.utils.press_up();
IPython.utils.press_down();
return true;
});
this.test.assertTrue(result, 'Up/down arrow okay in empty notebook.');
});