##// END OF EJS Templates
Adding prompt area to non-CodeCells to indent content....
Adding prompt area to non-CodeCells to indent content. This is a reponse to the problem of having really long lines in Markdown cells, which makes the content difficult to read. Users want wide code cells, so we don't want to narrow everything. The solution here is to give a prompt area to the heading/md cells to narrow their content area slightly. The only problem is that this makes it more difficult to distinguish between output and md content that follows that output. The solve this, we are adding a narrow line between output and following md.

File last commit:

r13416:4c4050a7
r13776:e285883b
Show More
shutdown_notebook.js
47 lines | 1.6 KiB | application/javascript | JavascriptLexer
Paul Ivanov
add test for shutdown notebook
r13303 //
// Test shutdown of a kernel.
//
casper.notebook_test(function () {
Paul Ivanov
don't use test.begin...
r13306 // XXX: test.begin allows named sections but requires casperjs 1.1.0-DEV.
// We will put it back into place when the next version of casper is
// released. Following that, all instances of this.test can be changed
// to just test.
//this.test.begin("shutdown tests (notebook)", 2, function(test) {
Paul Ivanov
use test.begin to give test group a name
r13304
Paul Ivanov
don't delete casper instance on shutdown test...
r13416 // Our shutdown test closes the browser window, which will delete the
// casper browser object, and the rest of the test suite will fail with
// errors that look like:
//
// "Error: cannot access member `evaluate' of deleted QObject"
//
// So what we do here is make a quick popup window, and run the test inside
// of it.
this.then(function() {
this.evaluate(function(url){
window.open(url);
}, {url : this.getCurrentUrl()});
})
Paul Ivanov
add test for shutdown notebook
r13303
Paul Ivanov
don't delete casper instance on shutdown test...
r13416 this.waitForPopup('');
this.withPopup('', function () {
this.thenEvaluate(function () {
$('#kill_and_exit').click();
});
Paul Ivanov
add test for shutdown notebook
r13303
Paul Ivanov
don't delete casper instance on shutdown test...
r13416 this.thenEvaluate(function () {
var cell = IPython.notebook.get_cell(0);
cell.set_text('a=10; print(a)');
cell.execute();
});
this.then(function () {
var result = this.get_output_cell(0);
this.test.assertFalsy(result, "after shutdown: no execution results");
this.test.assertNot(this.kernel_running(),
'after shutdown: IPython.notebook.kernel.running is false ');
});
});
Paul Ivanov
fix: allow JS test to run after shutdown test...
r13341
Paul Ivanov
don't use test.begin...
r13306 //}); // end of test.begin
Paul Ivanov
use test.begin to give test group a name
r13304 });