Gathering detailed insights and metrics for jest-watch-typeahead
Gathering detailed insights and metrics for jest-watch-typeahead
Gathering detailed insights and metrics for jest-watch-typeahead
Gathering detailed insights and metrics for jest-watch-typeahead
Jest watch plugin for filtering test by file name or test name
npm install jest-watch-typeahead
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
408 Stars
357 Commits
16 Forks
4 Watching
7 Branches
16 Contributors
Updated on 25 Nov 2024
TypeScript (97.37%)
JavaScript (2.63%)
Cumulative downloads
Total Downloads
Last day
-6.2%
930,326
Compared to previous day
Last week
1.6%
5,283,779
Compared to previous week
Last month
5.7%
22,174,793
Compared to previous month
Last year
-0.8%
245,852,817
Compared to previous year
1
27
Install jest
(it needs Jest 27+) and jest-watch-typeahead
1yarn add --dev jest jest-watch-typeahead 2 3# or with NPM 4 5npm install --save-dev jest jest-watch-typeahead
In your package.json
1{ 2 "jest": { 3 "watchPlugins": [ 4 "jest-watch-typeahead/filename", 5 "jest-watch-typeahead/testname" 6 ] 7 } 8}
Or in jest.config.js
1module.exports = { 2 watchPlugins: [ 3 'jest-watch-typeahead/filename', 4 'jest-watch-typeahead/testname', 5 ], 6};
1module.exports = { 2 watchPlugins: [ 3 [ 4 'jest-watch-typeahead/filename', 5 { 6 key: 'k', 7 prompt: 'do something with my custom prompt', 8 }, 9 ], 10 ], 11};
1yarn jest --watch
No vulnerabilities found.
Reason
14 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
Found 0/26 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-25
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