##// END OF EJS Templates
Merge pull request #6584 from jhamrick/fix-js-tests...
Matthias Bussonnier -
r18078:b440ef83 merge
parent child Browse files
Show More
@@ -50,7 +50,7 casper.open_new_notebook = function () {
50 casper.page_loaded = function() {
50 casper.page_loaded = function() {
51 // Return whether or not the kernel is running.
51 // Return whether or not the kernel is running.
52 return this.evaluate(function() {
52 return this.evaluate(function() {
53 return IPython !== undefined &&
53 return typeof IPython !== "undefined" &&
54 IPython.page !== undefined;
54 IPython.page !== undefined;
55 });
55 });
56 };
56 };
General Comments 0
You need to be logged in to leave comments. Login now