1.2.2 • Published 6 years ago

detect-repo-test-files v1.2.2

Weekly downloads
8
License
MIT
Repository
github
Last release
6 years ago

detect-repo-test-files

NPM version Downloads Build Status Coverage Status Dependency status Dev Dependency status Greenkeeper badge

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.