blob: a53e977bb656c4869721446b1f28834470ebe455 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import inspector, { Session } from "node:inspector";
import { assertEquals } from "@std/assert/equals";
Deno.test("[node/inspector] - importing inspector works", () => {
assertEquals(typeof inspector.open, "function");
});
Deno.test("[node/inspector] - Session constructor should not throw", () => {
new Session();
});
|