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-07-25 01:30:28 -04:00
|
|
|
import { stripAnsiCode } from "@std/fmt/colors";
|
|
|
|
import { assertStringIncludes } from "@std/assert";
|
2024-01-03 23:12:38 -05:00
|
|
|
|
|
|
|
Deno.test(function inspectCrossRealmObjects() {
|
|
|
|
assertStringIncludes(
|
2024-07-25 01:30:28 -04:00
|
|
|
stripAnsiCode(
|
2024-01-03 23:12:38 -05:00
|
|
|
Deno.inspect(vm.runInNewContext(`new Error("This is an error")`)),
|
|
|
|
),
|
|
|
|
"Error: This is an error",
|
|
|
|
);
|
|
|
|
assertStringIncludes(
|
2024-07-25 01:30:28 -04:00
|
|
|
stripAnsiCode(
|
2024-01-03 23:12:38 -05:00
|
|
|
Deno.inspect(
|
|
|
|
vm.runInNewContext(`new AggregateError([], "This is an error")`),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
"AggregateError: This is an error",
|
|
|
|
);
|
|
|
|
assertStringIncludes(
|
2024-07-25 01:30:28 -04:00
|
|
|
stripAnsiCode(
|
2024-01-03 23:12:38 -05:00
|
|
|
Deno.inspect(vm.runInNewContext(`new Date("2018-12-10T02:26:59.002Z")`)),
|
|
|
|
),
|
|
|
|
"2018-12-10T02:26:59.002Z",
|
|
|
|
);
|
|
|
|
});
|