mirror of
https://github.com/denoland/deno.git
synced 2025-03-12 15:17:56 -04:00
7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
![]() |
import { foo } from "./main.ts";
|
||
|
import vm from "node:vm";
|
||
|
Deno.test(function fooWorks() {
|
||
|
foo();
|
||
|
vm.runInNewContext("console.log('hi')");
|
||
|
});
|