blob: ad05e9a706032ed89d8adf27d9302778b6ab0b55 (
plain)
1
2
3
4
5
6
7
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { unitTest, assert } from "./test_util.ts";
unitTest(function symbolsExists(): void {
assert("internal" in Deno.symbols);
assert("customInspect" in Deno.symbols);
});
|