0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-09 21:57:40 -04:00
deno/tests/integration/jupyter_tests.rs
Matt Mastracci 30628e87a4 chore: continue tests/ re-org (#22396)
Split `node_compat_tests` into its own top-level test so its stdout
doesn't stomp on the remainder of the tests.
2024-02-15 10:32:21 +05:30

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,
});