summaryrefslogtreecommitdiff
path: root/cli/tests/unit/jupyter_test.ts
blob: 40eaf4623dd94b5bfa455c150626d8f68ede2746 (plain)
1
2
3
4
5
6
7
8
9
// 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.",
  );
});