Licence
MIT
Version
1.2.2
Deps
1
Size
9 kB
Vulns
0
Weekly
0
detect-repo-test-files
Scans a repository directory, searching for a test files.
All files present in test folders will be returned, including non-javascript files. You may filter those files afterwards with Array#filter.
Installation
$ npm install detect-repo-test-files
Usage
detectRepoTestFiles(dir) -> Promise
const detectRepoTestFiles = require('detect-repo-test-files');
detectRepoTestFiles('./some-repository-directory')
.then((files) => {
console.log(`detected ${files.length} test file(s)`);
console.log(files);
});
Tests
$ npm test$ npm test-cov to get coverage report
License
Released under the MIT License.