##// END OF EJS Templates
Update COPYING.txt...
Update COPYING.txt Don't exclude other projects Added new line Don't specify that the comment token in Javascript is different from Python. Fix line break Update 3-clause line

File last commit:

r15619:957ea4d8
r15988:4265cfef
Show More
empty_arrow_keys.js
21 lines | 636 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.keyboard.trigger_keydown('up');
IPython.keyboard.trigger_keydown('down');
return true;
});
this.test.assertTrue(result, 'Up/down arrow okay in empty notebook.');
});