Gathering detailed insights and metrics for test-exclude
Gathering detailed insights and metrics for test-exclude
Gathering detailed insights and metrics for test-exclude
Gathering detailed insights and metrics for test-exclude
@types/test-exclude
TypeScript definitions for test-exclude
@bemedev/vitest-exclude
Exclude files for test and coverage, more dev-friendly
ab-test-selector
Consistently assigns by argument to A or B test pool if enabled, also supports include and exclude lists
poku
🐷 Poku makes testing easy for Node.js, Bun, Deno, and you at the same time.
test for inclusion or exclusion of paths using globs
npm install test-exclude
Typescript
Module System
Min. Node Version
Node Version
NPM Version
96.5
Supply Chain
97.3
Quality
81.4
Maintenance
100
Vulnerability
99.6
License
JavaScript (100%)
Total Downloads
5,558,678,630
Last Day
1,884,733
Last Week
34,223,662
Last Month
139,786,332
Last Year
1,422,927,952
ISC License
8 Stars
124 Commits
13 Forks
5 Watchers
4 Branches
30 Contributors
Updated on Jun 10, 2024
Minified
Minified + Gzipped
Latest Version
7.0.1
Package Id
test-exclude@7.0.1
Unpacked Size
11.19 kB
Size
4.09 kB
File Count
7
NPM Version
10.2.3
Node Version
20.11.1
Published on
Jun 10, 2024
Cumulative downloads
Total Downloads
Last Day
27.3%
1,884,733
Compared to previous day
Last Week
1.9%
34,223,662
Compared to previous week
Last Month
0.5%
139,786,332
Compared to previous month
Last Year
16.6%
1,422,927,952
Compared to previous year
3
The file include/exclude logic used by nyc and babel-plugin-istanbul.
1const TestExclude = require('test-exclude'); 2const exclude = new TestExclude(); 3if (exclude().shouldInstrument('./foo.js')) { 4 // let's instrument this file for test coverage! 5}
The test-exclude constructor accepts an options object. The defaults are taken from @istanbuljs/schema.
This is the base directory by which all comparisons are performed. Files outside cwd
are not included.
Default: process.cwd()
Array of path globs to be ignored. Note this list does not include node_modules
which
is added separately. See @istanbuljs/schema/default-excludes.js for default list.
By default node_modules
is excluded. Setting this option true
allows node_modules
to be included.
Array of path globs that can be included. By default this is unrestricted giving a result
similar to ['**']
but more optimized.
Array of extensions that can be included. This ensures that nyc only attempts to process files which it might understand. Note use of some formats may require adding parser plugins to your nyc or babel configuration.
Default: ['.js', '.cjs', '.mjs', '.ts', '.tsx', '.jsx']
Test if filename
matches the rules of this test-exclude instance.
1const exclude = new TestExclude();
2exclude.shouldInstrument('index.js'); // true
3exclude.shouldInstrument('test.js'); // false
4exclude.shouldInstrument('README.md'); // false
5exclude.shouldInstrument('node_modules/test-exclude/index.js'); // false
In this example code:
index.js
is true because it matches the default options.extension
list
and is not part of the default options.exclude
list.test.js
is excluded because it matches the default options.exclude
list.README.md
is not matched by the default options.extension
node_modules/test-exclude/index.js
is excluded because options.excludeNodeModules
is true by default.This synchronously retrieves a list of files within cwd
which should be instrumented.
Note that setting cwd
to a parent of options.cwd
is ineffective, this argument can
only be used to further restrict the result.
This function does the same as TestExclude#globSync
but does so asynchronously. The
Promise resolves to an Array of strings.
test-exclude
for enterpriseAvailable as part of the Tidelift Subscription.
The maintainers of test-exclude
and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
3 existing vulnerabilities detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
Found 1/28 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-03-31
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More