Gathering detailed insights and metrics for grunt-mocha-cli
Gathering detailed insights and metrics for grunt-mocha-cli
Gathering detailed insights and metrics for grunt-mocha-cli
Gathering detailed insights and metrics for grunt-mocha-cli
npm install grunt-mocha-cli
Typescript
Module System
Min. Node Version
75.8
Supply Chain
98.4
Quality
73.2
Maintenance
50
Vulnerability
98.2
License
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
41 Stars
172 Commits
23 Forks
5 Watchers
5 Branches
6 Contributors
Updated on Apr 24, 2023
Latest Version
7.0.0
Package Id
grunt-mocha-cli@7.0.0
Unpacked Size
11.42 kB
Size
4.56 kB
File Count
8
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
1
Run Mocha server-side tests in Grunt.
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. You can install this plugin with this command:
1npm install grunt-mocha-cli --save-dev
All of the Mocha command line options are supported, plus some extras.
The list of test files to run can be specified using either the standard Grunt format or by using the files
option. If neither is specified, the Mocha default will be used (test/*.js
).
Warning: If you have a large number of test files, you should use the filesRaw
option and not the standard Grunt format or the files
option. Otherwise you risk hitting the operating system command line length limit.
allow-uncaught
(boolean) - enable uncaught errors to propagate.async-only
(boolean) - force all tests to take a callback (async).bail
(boolean) - bail after first test failure.check-leaks
(boolean) - check for global variable leaks.colors
(boolean) - force enabling of colors.delay
(boolean) - wait for async suite definition.exit
(boolean) - force shutdown of the event loop after test run: mocha will call process.exit.fgrep
(string) - only run tests containing forbid-only
(boolean) - causes test marked with only to fail the suite.forbid-pending
(boolean) - causes pending tests and test marked with skip to fail the suite.full-trace
(boolean) - display the full stack trace.globals
(array) - allow the given comma-delimited global names.grep
(string) - only run tests matching growl
(boolean) - enable growl notification support.inline-diffs
(boolean) - display actual/expected differences inline within each string.invert
(boolean) - inverts grep
and fgrep
matches.log-timer-events
(boolean) - time events including external callbacks.no-colors
(boolean) - force disabling of colors.no-deprecation
(boolean) - silence deprecation warnings.no-diff
(boolean) - do not show a diff on failure.no-timeouts
(boolean) - disables timeouts.parallel
(boolean) - run tests in parallel.perf-basic-prof
(boolean) - enable perf linux profiler (basic support).recursive
(boolean) - include sub directories.reporter
(string) - specify the reporter to use.reporter-options
(object) - specify the reporter options for some specific reporter, for example '{output: /tmp/out}' for 'xunit'.require
(array) - require the given modules.retries
(integer) - set number of times to retry a failed test case.slow
(integer) - "slow" test threshold in milliseconds [75].sort
(boolean) - sort test files.throw-deprecation
(boolean) - throw an exception anytime a deprecated function is used.timeout
(integer) - set test-case timeout in milliseconds [2000].trace-deprecation
(boolean) - show stack traces on deprecations.trace
(boolean) - trace function calls.ui
(string) - specify user-interface (bdd|tdd|exports).use_strict
(boolean) - enforce strict mode.env
(object) - hash of additional environment variables to pass to the Mocha process.files
(array) - globs of test files to run.filesRaw
(array) - globs of test files to run. These globs are passed directly to Mocha and aren't expanded by Grunt first.flags
(array) - set arbitrary node/mocha flags.force
(boolean) - continue running Grunt tasks even if tests fail.quiet
(boolean) - disable printing of Mocha's output to the terminal.save
(string) - write the mocha output to a file.Define test files using the standard Grunt format:
1grunt.initConfig({ 2 mochacli: { 3 options: { 4 require: ['should'], 5 reporter: 'nyan', 6 bail: true 7 }, 8 all: ['test/*.js'] 9 } 10}) 11grunt.loadNpmTasks('grunt-mocha-cli') 12grunt.registerTask('test', ['mochacli'])
Define test files and basic options once, then customise options per target:
1grunt.initConfig({ 2 mochacli: { 3 options: { 4 require: ['should'], 5 files: 'test/*.js' 6 }, 7 spec: { 8 options: { 9 reporter: 'spec' 10 } 11 }, 12 nyan: { 13 options: { 14 reporter: 'nyan' 15 } 16 } 17 } 18}) 19grunt.loadNpmTasks('grunt-mocha-cli') 20grunt.registerTask('test', ['mochacli:spec'])
In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Grunt Mocha CLI is released under the MIT license.
Copyright © 2013 Roland Warmerdam.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 2/23 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
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
Reason
21 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