summaryrefslogtreecommitdiff
path: root/cli/js/internals_test.ts
blob: 055995fdfb423b5ecc12c8cc3b1e8bdaa3511add (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test, assert } from "./test_util.ts";

test(function internalsExists(): void {
  const {
    stringifyArgs
    // eslint-disable-next-line @typescript-eslint/no-explicit-any
  } = Deno[Deno.symbols.internal] as any;
  assert(!!stringifyArgs);
});