##// END OF EJS Templates
Merge pull request #5083 from minrk/one-nb-server...
Merge pull request #5083 from minrk/one-nb-server don't create js test directories unless they are being used

File last commit:

r15201:029ac024
r15261:0605090a merge
Show More
empty_arrow_keys.js
21 lines | 608 B | application/javascript | JavascriptLexer
David Wyde
Add a test to demonstrate errors when up/down arrow keys are...
r13251 //
// Check for errors with up and down arrow presses in an empty notebook.
//
Paul Ivanov
pep8 style function names
r13275 casper.notebook_test(function () {
David Wyde
Add a test to demonstrate errors when up/down arrow keys are...
r13251 var result = this.evaluate(function() {
Paul Ivanov
make confusing code snippet more readable
r13283 var ncells = IPython.notebook.ncells();
var i;
David Wyde
Add a test to demonstrate errors when up/down arrow keys are...
r13251
// Delete all cells.
for (i = 0; i < ncells; i++) {
IPython.notebook.delete_cell();
}
// Simulate the "up arrow" and "down arrow" keys.
Paul Ivanov
use new press_up and press_down utils functions
r13281 //
IPython.utils.press_up();
IPython.utils.press_down();
David Wyde
Add a test to demonstrate errors when up/down arrow keys are...
r13251 return true;
});
David Wyde
Wrap CasperJS tests in a helper function to reduce boilerplate.
r13253 this.test.assertTrue(result, 'Up/down arrow okay in empty notebook.');
David Wyde
Add a test to demonstrate errors when up/down arrow keys are...
r13251 });