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

test(function symbolsExists(): void {
  assert("internal" in Deno.symbols);
  assert("customInspect" in Deno.symbols);
});