summaryrefslogtreecommitdiff
path: root/tests/node_compat/runner.ts
blob: e923cde1101aad140659e1ec74d48e7cbeb3fa03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import "./polyfill_globals.js";
import { createRequire } from "node:module";
import { toFileUrl } from "@std/path/mod.ts";
const file = Deno.args[0];
if (!file) {
  throw new Error("No file provided");
}

if (file.endsWith(".mjs")) {
  await import(toFileUrl(file).href);
} else {
  createRequire(import.meta.url)(file);
}