jasmine-console-reporter-custom-1 v2.0.2
jasmine-console-reporter
Console Reporter for Jasmine. Outputs detailed test results to the console, with beautiful layout and colors. This is the default reporter of grunt-jasmine-nodejs.
Author: Onur Yıldırım (onury) © 2016
Licensed under the MIT License.
Example output from grunt-jasmine-nodejs.

Installation
npm install jasmine-console-reporterUsage
var JasmineConsoleReporter = require('jasmine-console-reporter');
var reporter = new JasmineConsoleReporter({
colors: 1, // (0|false)|(1|true)|2
cleanStack: 1, // (0|false)|(1|true)|2|3
verbosity: 4, // (0|false)|1|2|(3|true)|4
listStyle: 'indent', // "flat"|"indent"
activity: false
});
// pass the initialized reporter to whichever task or host...Options
colors — Type:
Number|BooleanDefault:1
Specifies whether the output should have colored text. Possible integer values: 0 to 2. Set to1(ortrue) to enable colors. Set to2to use the ANSI escape codes. Option2can be useful if, for example, you're running your tests from a sub-process, and the colors aren't showing up.cleanStack — Type:
Number|BooleanDefault:1
Specifies the filter level for the error stacks. Possible integer values: 0 to 3. Set to1(ortrue) to only filter out lines with jasmine-core path from stacks. Set to2to filter out allnode_modulespaths. Set to3to also filter out lines with no file path in it.verbosity — Type:
Number|BooleanDefault:4
(alias:verbose) Specifies the verbosity level for the reporter output. Possible integer values: 0 to 4. When aBooleanvalue is passed,truedefaults to4andfalsedefaults to0. Level 0: reports errors only. Level 1: also displays a summary. Level 2: also reports pending specs. Level 3: additionally displays all suites and specs as a list, except disabled specs. Level 4: also lists disabled specs.listStyle — Type:
StringDefault:"indent"
Indicates the style of suites/specs list output. Possible values:"flat"or"indent". Setting this to"indent"provides a better view especially when using nested (describe) suites. This option is only effective when verbosity level is set to3,4ortrue.activity — Type:
BooleanDefault:false
Specifies whether to enable the activity indicator animation that outputs the current spec that is being executed. If your tests log extra data to console, this option should be disabled or they might be overwritten.
Change-Log
v1.2.7 (2016-08-21)
cleanStackoption would render the first line as the error message, not respecting messages with\n(new-line) in them. Fixed.Updated dev-dependencies.
v1.2.6 (2016-05-09)
- Failed specs that don't have an error stack, would not output a warning message. Fixed.
Updated dependencies to their latest versions.
v1.2.4 (2016-03-18)
v1.2.2 (2016-02-27)
- Added grunt, jasmine tests, etc...
Moved helper classes and utils to separate modules.
v1.2.0 (2016-02-26)
- Moved the reporter to its own repo.
Code revisions and clean-up.
v1.1.3 (2015-07-05)
- Expanded
verbositylevels (0 to 4). Setting to3will not report disabled specs anymore while listing others. Set to4(default) for the most verbose report. Updated dependencies to their latest versions.
- Expanded
v1.1.0 (2015-05-01)
- Revised dependencies.
Code revisions and clean-up.
v1.0.1 (2015-04-27)
Changed the default value of
activityoption tofalse. This should not be enabled if your tests log extra data to console. Fixed activity output.
v1.0.0 (2015-04-21)
- Progressive console output. Each spec result is now output at real-time as it's executed. This effectively helps tracking unhandled errors.
- Fixed mis-handled nested suites (describe blocks). Each spec result and nested suite is now correctly output in relation to its parent test siute.
- Highlighted file name, line and column numbers in stacks. Only effective if
colorsis enabled. - Fixed the stack-filter to support Windows file paths.
- Improved option:
cleanStacknow also accepts aNumber(integer) to determine the filter level. See documentation. - Added new option:
listStyle. See documentation. - Improved option:
verbosity(alias:verbose) now also accepts aNumber(integer) to determine the verbosity level. See documentation. - Clickable file paths in error stacks (This is useful only if your terminal supports it. For example, CMD+Click will open the file and move the cursor to the target line in iTerm 2 for Mac, if configured.)
- Added new option:
activity. See documentation. Updated dependencies to their latest versions.
v0.7.2 (2015-03-11)
Console Reporter: Fixed undefined suite description issue for focused specs (
fit(...)); which was breaking the spec-run.
v0.7.1 (2015-03-06)
Console Reporter: Fixed symbols and colors for Windows platforms.
v0.7.0 (2015-03-04)
- Added new option:
cleanStack. Code revisions and clean-up.
- Added new option:
v0.6.3 (2015-03-03)
Fixes for
nullstack trace & peer jasmine-core. (PR by @fiznool)
v0.6.2 (2015-03-01)
- Improved reporter output.
Code clean-up.
v0.6.0 (2015-02-12)
- Cleaner error stacks. Filtered out lines with jasmine-core path.
Better reporter console output.
v0.5.1 (2015-02-07)
Fixed timer (zero elapsed time) issue.
v0.5.0 (2015-02-07)
- Initial release.