jasmine-console-reporter
Advanced tools
Changelog
3.1.0 (2018-08-21)
timeUnit
(String
, default: "ms"
) The time unit to be used to measure spec execution. "ms"
for milliseconds, "ns"
for milliseconds including hi-res nanoseconds remainder, "s"
for seconds including milliseconds remainder.timeThreshold
(Object|Number
, default: { ok: 500, warn: 1000, ouch: 3000 }
) the expected maximum time(s) (in milliseconds) for any spec to complete its execution. If threshold is exceeded, elapsed time for that spec will be accented in the output. This is only effective if colors
option is enabled.verbosity
option now also accepts an object, in order to toggle each output section individually. #11colors
) would not pick up default values when omitted. Fixes #10.Changelog
3.0.2 (2018-05-17)
verbosity
is 1
or above. PR #9 by @steverice.Changelog
3.0.0 (2018-04-03)
This major version is re-written in ES2015. See breaking changes below.
verbosity
is set to 4
.incomplete
) within report summary.emoji
👊 (boolean
, default: false
). Note: emojis will be auto-disabled in CI environments.beep
(boolean
, default: false
). Note: beep will be auto-disabled in CI and non-TTY environments.true
, set activity
option to a string value to set the style of the spinner. e.g. "dots"
(default) or "bouncingBar"
. See all possible values here.Changelog
2.0.1 (2017-08-20)
chalk
dependency upgrade, the reporter now requires Node.js v4 or newer.colors
option is set to 2
(ANSI colors). Fixes issue #5.Changelog
1.2.8 (2017-08-20)
(CAUTION: version 1.2.8 has a critical bug. To avoid it, do NOT set
colors
option to2
(ANSI colors). Or better update to v2+ if you're using Node.js version 4 or newer.)
jasmine
and chalk
to latest versions.