summaryrefslogtreecommitdiff
path: root/cli/tests/node_compat/runner.ts
blob: 93fca654827daba9575a1ad7f7c4e3a362987a8e (plain)
1
2
3
4
5
6
7
8
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import "./polyfill_globals.js";
import { createRequire } from "node:module";
const file = Deno.args[0];
if (!file) {
  throw new Error("No file provided");
}
createRequire(import.meta.url)(file);