empty_arrow_keys.js
21 lines
| 636 B
| application/javascript
|
JavascriptLexer
David Wyde
|
r13251 | // | ||
// Check for errors with up and down arrow presses in an empty notebook. | ||||
// | ||||
Paul Ivanov
|
r13275 | casper.notebook_test(function () { | ||
David Wyde
|
r13251 | var result = this.evaluate(function() { | ||
Paul Ivanov
|
r13283 | var ncells = IPython.notebook.ncells(); | ||
var i; | ||||
David Wyde
|
r13251 | |||
// Delete all cells. | ||||
for (i = 0; i < ncells; i++) { | ||||
IPython.notebook.delete_cell(); | ||||
} | ||||
// Simulate the "up arrow" and "down arrow" keys. | ||||
Paul Ivanov
|
r13281 | // | ||
Brian E. Granger
|
r15619 | IPython.keyboard.trigger_keydown('up'); | ||
IPython.keyboard.trigger_keydown('down'); | ||||
David Wyde
|
r13251 | return true; | ||
}); | ||||
David Wyde
|
r13253 | this.test.assertTrue(result, 'Up/down arrow okay in empty notebook.'); | ||
David Wyde
|
r13251 | }); | ||