mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
3d2e52ae7e
Split `node_compat_tests` into its own top-level test so its stdout doesn't stomp on the remainder of the tests.
10 lines
296 B
Rust
10 lines
296 B
Rust
// 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,
|
|
});
|