2023-01-02 16:00:42 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2021-11-23 11:45:18 -05:00
|
|
|
import { assert } from "./test_util.ts";
|
2020-01-16 19:42:58 -05:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function internalsExists() {
|
2020-01-16 19:42:58 -05:00
|
|
|
const {
|
2020-07-11 00:52:18 -04:00
|
|
|
inspectArgs,
|
2020-05-26 10:02:16 -04:00
|
|
|
// @ts-expect-error TypeScript (as of 3.7) does not support indexing namespaces by symbol
|
2020-04-27 19:06:03 -04:00
|
|
|
} = Deno[Deno.internal];
|
2020-07-11 00:52:18 -04:00
|
|
|
assert(!!inspectArgs);
|
2020-01-16 19:42:58 -05:00
|
|
|
});
|