12 lines
319 B
JavaScript
12 lines
319 B
JavaScript
import path from "path";
|
|
import { runFixtureTests } from "./helpers/runFixtureTests.js";
|
|
import { parseExpression } from "../lib/index.js";
|
|
import { fileURLToPath } from "url";
|
|
|
|
const fixtures = path.join(
|
|
path.dirname(fileURLToPath(import.meta.url)),
|
|
"expressions",
|
|
);
|
|
|
|
runFixtureTests(fixtures, parseExpression);
|