##// END OF EJS Templates
don't shutdown kernel after every test
Paul Ivanov -
Show More
@@ -51,10 +51,14 b' casper.delete_current_notebook = function () {'
51 casper.notebook_test = function(test) {
51 casper.notebook_test = function(test) {
52 this.open_new_notebook();
52 this.open_new_notebook();
53 this.then(test);
53 this.then(test);
54 this.shutdown_current_kernel();
54 //XXX: we get sporadic error messages when shutting down some of the tests.
55 // Since the entire server will go down at the end of running the test
56 // suite, it's ok for now to not try to shut anything down.
57 //this.shutdown_current_kernel();
58
55 //XXX: the implementation of delete_current_notebook is currently broken
59 //XXX: the implementation of delete_current_notebook is currently broken
56 // it's not a big deal, since the notebook directory will be deleted on
60 // it's not a big deal, since the notebook directory will be deleted on
57 // cleanup, but we should add tests for deleting the notebook separately
61 // cleanup, but we should add tests for deleting the notebook separately
58 //this.delete_current_notebook();
62 //this.delete_current_notebook();
59
63
60 // Run the browser automation.
64 // Run the browser automation.
General Comments 0
You need to be logged in to leave comments. Login now