Gathering detailed insights and metrics for karma-mocha-clean-reporter
Gathering detailed insights and metrics for karma-mocha-clean-reporter
npm install karma-mocha-clean-reporter
Typescript
Module System
NPM Version
JavaScript (100%)
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
960,174
Last Day
153
Last Week
683
Last Month
3,098
Last Year
36,186
NOASSERTION License
1 Stars
67 Commits
1 Watchers
3 Branches
1 Contributors
Updated on Aug 22, 2016
Minified
Minified + Gzipped
Latest Version
0.0.1
Package Id
karma-mocha-clean-reporter@0.0.1
Size
5.62 kB
NPM Version
1.4.28
Published on
May 22, 2015
Cumulative downloads
Total Downloads
Last Day
0.7%
153
Compared to previous day
Last Week
-12.1%
683
Compared to previous week
Last Month
13.4%
3,098
Compared to previous month
Last Year
-16%
36,186
Compared to previous year
Karma reporter plugin with mocha-clean style logging. Forked from litixsoft/karma-mocha-reporter.
The easiest way is to keep karma-mocha-clean-reporter
as a devDependency in your package.json
.
1{ 2 "devDependencies": { 3 "karma": "^0.12", 4 "karma-mocha-clean-reporter": "^0.0.1" 5 } 6}
You can install it by:
$ npm install karma-mocha-clean-reporter --save-dev
1// karma.conf.js 2module.exports = function(config) { 3 config.set({ 4 frameworks: ['jasmine'], 5 6 // reporters configuration 7 reporters: ['mocha'], 8 9 plugins: [ 10 'karma-jasmine', 11 'karma-mocha-clean-reporter' 12 ] 13 }); 14};
Type: String
Possible Values:
Value | Description |
---|---|
full (default) | all output is printed to the console |
autowatch | first run will have the full output and the next runs just output the summary and errors in mocha style |
minimal | only the summary and errors are printed to the console in mocha style |
noFailures | the failure details are not logged |
1// karma.conf.js 2module.exports = function(config) { 3 config.set({ 4 frameworks: ['jasmine'], 5 6 // reporters configuration 7 reporters: ['mocha-clean'], 8 9 // reporter options 10 mochaReporter: { 11 output: 'autowatch' 12 } 13 }); 14};
Type: Boolean
Possible Values:
false
(default)true
When setting the ignoreSkipped flag to true, the reporter will ignore the skipped tests in the output and you will see only the tests that where really executed. The summary will still contain the number of skipped tests.
In lieu of a formal styleguide take care to maintain the existing coding style. Lint and test your code using grunt.
You can preview your changes by running:
$ grunt demo --force
Based on work Copyright (C) Litixsoft GmbH info@litixsoft.de
Licensed under the MIT license.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included i all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 0/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
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 2025-03-10
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