Files
babel/packages/babel-helper-plugin-test-runner/src/index.js
2017-10-16 22:49:56 -04:00

8 lines
217 B
JavaScript

import testRunner from "@babel/helper-transform-fixture-test-runner";
import path from "path";
export default function(loc) {
const name = path.basename(path.dirname(loc));
testRunner(loc + "/fixtures", name);
}