mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
88bc57d764
This commit removes the requirement for `--unstable` flag in `deno jupyter` subcommand. The process will no longer exit if this flag is not provided, however the subcommand itself is still considered unstable and might change in the future. Required for https://github.com/denoland/deno/pull/21452
8 lines
273 B
Rust
8 lines
273 B
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
itest!(jupyter_install_command_not_exists {
|
|
args: "jupyter --install",
|
|
output: "jupyter/install_command_not_exists.out",
|
|
envs: vec![("PATH".to_string(), "".to_string())],
|
|
exit_code: 1,
|
|
});
|