mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-18 11:55:46 +08:00
Assume undefined is idle.
This commit is contained in:
parent
b689700910
commit
03a5b47067
@ -149,7 +149,7 @@ casper.wait_for_idle = function () {
|
||||
// Waits for the notebook to idle.
|
||||
this.waitFor(function () {
|
||||
return this.evaluate(function () {
|
||||
return IPython._status == 'idle';
|
||||
return IPython._status == 'idle' || IPython._status === undefined;
|
||||
});
|
||||
});
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user