diff --git a/tests/nest-cli.ts b/tests/nest-cli.ts new file mode 100644 index 0000000..d7b5856 --- /dev/null +++ b/tests/nest-cli.ts @@ -0,0 +1,12 @@ +import { runInRepo } from "../utils"; +import { RunOptions } from "../types"; + +export async function test(options: RunOptions) { + await runInRepo({ + ...options, + repo: "nestjs/nest-cli", + branch: "master", + build: "build", + test: "test", + }); +}