jasmine-console-reporter icon indicating copy to clipboard operation
jasmine-console-reporter copied to clipboard

Progressive Console Reporter for Jasmine. Outputs detailed test results to the console, with beautiful layout and colors.

Results 6 jasmine-console-reporter issues
Sort by recently updated
recently updated
newest added

Introduced through: [email protected][email protected][email protected][email protected] Remediation: Upgrade to [email protected]. reference link: https://snyk.io/test/npm/jasmine-console-reporter/3.1.0

The same command works fine on Node 12 and 14, but fails on Node 16+. Not sure why. ``` $ jasmine --config=jasmine.json --reporter=jasmine-console-reporter /home/runner/work/tldr-lint/tldr-lint/node_modules/jasmine/lib/command.js:171 throw new Error('Failed to load reporter...

This script produces four errors at the level of the top suite: ``` const Jasmine = require('jasmine'); const JasmineConsoleReporter = require('jasmine-console-reporter'); const jasmine = new Jasmine(); const reporter = new...

Dependencies version: ```json "jasmine": "^3.5.0", "jasmine-console-reporter": "^3.1.0", ``` I followed the doc to setup `jasmine-console-reporter` like below: ```js jasmine.env.clearReporters(); jasmine.addReporter(reporter); ``` Got errors: ```bash jasmine.env.clearReporters(); ^ TypeError: Cannot read property...

**Summary** When using `fit` or `fdescribe` with `verbosity` 3, the console output is broken. **Steps to Reproduce** 1. Use the full example setup in _README.md_, except change `verbosity` to 3....

jasmine limitation