Skip to content

Commit a717e7d

Browse files
committed
Merge branch 'main' into vscode-webview-proxy
2 parents 5bedf40 + 3eae481 commit a717e7d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

β€Žfrontend/components/RunArea.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const prettytime = (time_ns) => {
6969
i += 1
7070
result /= 1000
7171
}
72-
const roundedtime = result.toFixed(time_ns < 10 || result >= 100.0 ? 0 : 1)
72+
const roundedtime = result.toFixed(time_ns < 100 || result >= 100.0 ? 0 : 1)
7373

7474
return roundedtime + "\xa0" + prefices[i] + "s"
7575
}

β€Žtest/React.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ import Distributed
177177
# and also that Pluto can figure out the execution order on its own
178178
@test all(noerror, notebook.cells)
179179

180+
WorkspaceManager.unmake_workspace((🍭, notebook))
180181
🍭.options.evaluation.workspace_use_distributed = false
181182
end
182183

@@ -355,6 +356,7 @@ import Distributed
355356
@test notebook.cells[4] |> noerror
356357
@test notebook.cells[1].output.body == "\"double_december = 24\""
357358

359+
WorkspaceManager.unmake_workspace((🍭, notebook))
358360
🍭.options.evaluation.workspace_use_distributed = false
359361
end
360362

@@ -376,6 +378,7 @@ import Distributed
376378
@test :conj ∈ notebook.topology.nodes[notebook.cells[1]].references
377379
@test notebook.cells[1].output.body == "200"
378380

381+
WorkspaceManager.unmake_workspace((🍭, notebook))
379382
🍭.options.evaluation.workspace_use_distributed = false
380383
end
381384

0 commit comments

Comments
Β (0)