All files glob.ts

0% Statements 0/10
100% Branches 0/0
100% Functions 0/0
0% Lines 0/10

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26                                                   
#!/usr/bin/env node
 
import * as fs from "fs-extra";
import * as path from "path";
import commander from "commander";
import { globTestIds } from "./glob-test-ids";
 
const program = new commander.Command("glob-test-ids");
 
const packageJson = JSON.parse(
    fs.readFileSync(path.join(__dirname, "..", "package.json")).toString()
);
 
program.version(packageJson.version);
 
program
    .requiredOption("-i, --ids-location <location>", "glob pattern of id files")
    .requiredOption("-o, --output <output>", "Output file");
 
program.parse(process.argv);
 
globTestIds({
    idsLocation: program.idsLocation,
    output: program.output
});