mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
46a4bd5178
Closes https://github.com/denoland/deno/issues/20591 --------- Co-authored-by: Kyle Kelley <rgbkrk@gmail.com>
9 lines
291 B
TypeScript
9 lines
291 B
TypeScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
import { assertThrows } from "./test_util.ts";
|
|
|
|
Deno.test("Deno.jupyter is not available", () => {
|
|
assertThrows(
|
|
() => Deno.jupyter,
|
|
"Deno.jupyter is only available in `deno jupyter` subcommand.",
|
|
);
|
|
});
|