1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/cli/tests/unit/jupyter_test.ts

10 lines
291 B
TypeScript
Raw Normal View History

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