mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
10 lines
291 B
TypeScript
10 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.",
|
||
|
);
|
||
|
});
|