diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-01-03 09:45:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-03 14:45:10 +0000 |
commit | 97937a097e8fe52cdefd55bf12a92e19d627aca4 (patch) | |
tree | 42cf3d2f8be398165f275cc9724385a8b0fde361 /cli/tests/integration/mod.rs | |
parent | a387efa46efc906e410041a46bf4659412dc49b4 (diff) |
fix(jupyter): error message when install fails due to jupyter command not being on PATH (#21767)
We were failing silently in this scenario.
Diffstat (limited to 'cli/tests/integration/mod.rs')
-rw-r--r-- | cli/tests/integration/mod.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cli/tests/integration/mod.rs b/cli/tests/integration/mod.rs index f599e2e87..19796f245 100644 --- a/cli/tests/integration/mod.rs +++ b/cli/tests/integration/mod.rs @@ -121,7 +121,10 @@ mod inspector; mod install; #[path = "js_unit_tests.rs"] mod js_unit_tests; -mod jsr_tests; +#[path = "jsr_tests.rs"] +mod jsr; +#[path = "jupyter_tests.rs"] +mod jupyter; #[path = "lint_tests.rs"] mod lint; #[path = "lsp_tests.rs"] |