mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 04:51:22 +00:00
92f6188253
This PR: 1. Replaces `@test_util/std`-prefixed imports with `@std`. 2. Adds `@std/` import map entries to a few `deno.json` files.
29 lines
778 B
TypeScript
29 lines
778 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import vm from "node:vm";
|
|
import { stripColor } from "@std/fmt/colors.ts";
|
|
import { assertStringIncludes } from "@std/assert/mod.ts";
|
|
|
|
Deno.test(function inspectCrossRealmObjects() {
|
|
assertStringIncludes(
|
|
stripColor(
|
|
Deno.inspect(vm.runInNewContext(`new Error("This is an error")`)),
|
|
),
|
|
"Error: This is an error",
|
|
);
|
|
assertStringIncludes(
|
|
stripColor(
|
|
Deno.inspect(
|
|
vm.runInNewContext(`new AggregateError([], "This is an error")`),
|
|
),
|
|
),
|
|
"AggregateError: This is an error",
|
|
);
|
|
assertStringIncludes(
|
|
stripColor(
|
|
Deno.inspect(vm.runInNewContext(`new Date("2018-12-10T02:26:59.002Z")`)),
|
|
),
|
|
"2018-12-10T02:26:59.002Z",
|
|
);
|
|
});
|