karma-spec-reporter

WebJar for karma-spec-reporter

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

karma-spec-reporter
Последняя версия

Последняя версия

0.0.26
Дата

Дата

Тип

Тип

jar
Описание

Описание

karma-spec-reporter
WebJar for karma-spec-reporter
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/mlex/karma-spec-reporter

Скачать karma-spec-reporter

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/karma-spec-reporter/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>karma-spec-reporter</artifactId>
    <version>0.0.26</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/karma-spec-reporter/
implementation 'org.webjars.npm:karma-spec-reporter:0.0.26'
// https://jarcasting.com/artifacts/org.webjars.npm/karma-spec-reporter/
implementation ("org.webjars.npm:karma-spec-reporter:0.0.26")
'org.webjars.npm:karma-spec-reporter:jar:0.0.26'
<dependency org="org.webjars.npm" name="karma-spec-reporter" rev="0.0.26">
  <artifact name="karma-spec-reporter" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='karma-spec-reporter', version='0.0.26')
)
libraryDependencies += "org.webjars.npm" % "karma-spec-reporter" % "0.0.26"
[org.webjars.npm/karma-spec-reporter "0.0.26"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : colors jar [0.6.0,0.7)

Модули Проекта

Данный проект не имеет модулей.

karma-spec-reporter

Join the chat at https://gitter.im/mlex/karma-spec-reporter Build Status Coverage Status

Test reporter, that prints detailed results to console (similar to mocha's spec reporter).

Usage

To use in your own Node.js project, just execute

npm install karma-spec-reporter --save-dev

This will download the karma-spec-reporter and add the dependency to package.json.

Then add 'spec' to reporters in karma.conf.js, e.g.

reporters: ['spec']

Take a look at the karma-spec-reporter-example repository to see the reporter in action.

Configuration

To limit the number of lines logged per test or suppress specific reporting, use the specReporter configuration in your karma.conf.js file

//karma.conf.js
...
  config.set({
    ...
      reporters: ["spec"],
      specReporter: {
        maxLogLines: 5,             // limit number of lines logged per test
        suppressErrorSummary: true, // do not print error summary
        suppressFailed: false,      // do not print information about failed tests
        suppressPassed: false,      // do not print information about passed tests
        suppressSkipped: true,      // do not print information about skipped tests
        showSpecTiming: false,      // print the time elapsed for each spec
        failFast: true              // test would finish with error when a first fail occurs. 
      },
      plugins: ["karma-spec-reporter"],
    ...

Contributing

Running tests

To run the tests for the index.js file, run: npm test

Generating Coverage

To see the coverage report for the module, run: npm run coverage

Версии библиотеки

Версия
0.0.26