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