Gathering detailed insights and metrics for verit-test
Gathering detailed insights and metrics for verit-test
Gathering detailed insights and metrics for verit-test
Gathering detailed insights and metrics for verit-test
npm install verit-test
Typescript
Module System
Node Version
NPM Version
JavaScript (97.13%)
Shell (2.87%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
1 Stars
23 Commits
1 Watchers
14 Branches
2 Contributors
Updated on Jul 16, 2019
Latest Version
3.1.0
Package Id
verit-test@3.1.0
Unpacked Size
24.17 kB
Size
7.15 kB
File Count
11
NPM Version
6.9.0
Node Version
11.13.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
4
A basic JavaScript testing framework designed to work with .mjs
files without need of a transpiler.
npm i -D verit-test
Aliases: vt
, vtest
, verit-test
1# The entire test suite: 2vt 3 4# A glob: 5vt test/**/*.test.mjs 6 7# A specific file: 8vt test/unit/src/App.test.mjs 9 10# A specific test: 11vt test/unit/src/App.test.mjs -l 126
Configuration can be passed directly to vt via command-line:
vt --foo=bar
And can be accessed via:
1it( "my test", test => { 2 3 assert.equal( test.config.foo, "bar" ); 4 5} );
Configuration can also be passed per-suite or per-test:
1describe( "my suite", { foo: "bar" }, () => { 2 3 it( "my test", { baz: "quz" }, test => { 4 5 assert.equal( test.config.foo, "bar" ); 6 assert.equal( test.config.baz, "qux" ); 7 8 } ); 9 10} );
vt --help
Options:
--help Show help [boolean]
--version Show version number [boolean]
--parallel Option to run tests in parallel [boolean] [default: true]
--globals Option to attach global test helpers [boolean] [default: false]
--line, -l Lines of tests and suites to run [number]
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/21 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
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
Reason
43 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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