blob: 59c247e5dc6de95a8049673309bd32f258c3e39f (
plain)
1
2
3
4
5
6
7
8
|
// 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,
});
|