This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
/* tslint:disable:no-console */ | |
const find = require("find"); | |
const path = require("path"); | |
const projectDirectory = path.resolve(__dirname, ".."); // because it is in ./scripts | |
const printChunk = (testFiles, totalChunks, chunkIndex) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
/* tslint:disable:no-console */ | |
const proc = require("child_process"); | |
const find = require("find"); | |
const path = require("path"); | |
const projectDirectory = path.resolve(__dirname, ".."); |