blob: 54786125854ea5001ed1dcffa059cb21f9f1db29 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use test_util::itest;
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,
});
|