2024-01-04 00:57:13 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2024-01-03 23:12:38 -05:00
|
|
|
|
|
|
|
import vm from "node:vm";
|
2024-02-12 21:05:10 -05:00
|
|
|
import { stripColor } from "@std/fmt/colors.ts";
|
|
|
|
import { assertStringIncludes } from "@std/assert/mod.ts";
|
2024-01-03 23:12:38 -05:00
|
|
|
|
|
|
|
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",
|
|
|
|
);
|
|
|
|
});
|