mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-05 09:01:40 -05:00
stragglers from C-x k
This commit is contained in:
parent
5de0c8b8a4
commit
66d6ea81a0
3 changed files with 6 additions and 5 deletions
|
@ -98,7 +98,6 @@ Scenario: Assign variable, save, kill notebook buffer, get it back, check variab
|
|||
And I type "b"
|
||||
And I wait for cell to execute
|
||||
Then I should see "3.1415"
|
||||
And I press "C-x k"
|
||||
|
||||
@julia
|
||||
Scenario: Smoke test julia
|
||||
|
|
|
@ -47,8 +47,7 @@
|
|||
do (cl-loop repeat 16
|
||||
until done-p
|
||||
do (sleep-for 0 1000)
|
||||
finally do (if done-p
|
||||
(message "killed %s" path)
|
||||
finally do (unless done-p
|
||||
(ein:display-warning (format "cannot close %s" path))))
|
||||
do (when (or (ob-ein-anonymous-p path)
|
||||
(search "Untitled" path)
|
||||
|
@ -65,7 +64,10 @@
|
|||
(cl-loop for nb in it
|
||||
for path = (ein:$notebook-notebook-path nb)
|
||||
do (ein:log 'debug "Notebook %s still open" path)
|
||||
finally do (assert nil))))
|
||||
finally do (assert nil)))
|
||||
(let ((stragglers (file-name-all-completions "Untitled"
|
||||
ein:testing-jupyter-server-root)))
|
||||
(should-not stragglers)))
|
||||
|
||||
(Setup
|
||||
(ein:dev-start-debug)
|
||||
|
|
Loading…
Add table
Reference in a new issue