2021-11-24 11:43:18 +01:00

11 lines
295 B
JavaScript

import path from "path";
import { runFixtureTests } from "./helpers/runFixtureTests.js";
import { parse } from "../lib/index.js";
import { fileURLToPath } from "url";
const fixtures = path.join(
path.dirname(fileURLToPath(import.meta.url)),
"fixtures",
);
runFixtureTests(fixtures, parse);