You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
608 B
22 lines
608 B
//
|
|
// 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.');
|
|
});
|