jest-bdd-generator
Version:
Jest code generator empowered with Gherkin and BDD
11 lines (10 loc) • 366 B
JavaScript
import { runTests } from "../index";
import { run } from "./adapter";
import * as path from "path";
const options = {
pathFeatureInput: path.join(process.cwd(), "./docs/features"),
pathTestsInput: path.join(process.cwd(), "./tests"),
pathOutput: path.join(process.cwd(), "./docs/reports")
};
void run(runTests, options);
//# sourceMappingURL=gen-report.js.map