testeranto
Version:
the AI powered BDD test framework for typescript projects
21 lines (18 loc) • 479 B
text/typescript
import fs from "fs";
import { IRunTime } from "../lib";
export default (r: IRunTime) => {
return {
name: "rebuild-notify",
setup: (build) => {
build.onEnd((result) => {
console.log(`${r} > build ended with ${result.errors.length} errors`);
if (result.errors.length > 0) {
fs.writeFileSync(
`./testeranto/reports${r}_build_errors`,
JSON.stringify(result, null, 2)
);
}
});
},
};
};