12 lines
268 B
JavaScript
12 lines
268 B
JavaScript
import runner from "@babel/helper-transform-fixture-test-runner";
|
|
import { fileURLToPath } from "url";
|
|
import path from "path";
|
|
|
|
runner.default(
|
|
path.join(
|
|
path.dirname(fileURLToPath(import.meta.url)),
|
|
"/fixtures/transformation",
|
|
),
|
|
"transformation",
|
|
);
|