Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fumiakiy/karma-tap-reporter
Karma plugin to report test results in TAP.
https://github.com/fumiakiy/karma-tap-reporter
Last synced: 29 days ago
JSON representation
Karma plugin to report test results in TAP.
- Host: GitHub
- URL: https://github.com/fumiakiy/karma-tap-reporter
- Owner: fumiakiy
- License: mit
- Created: 2014-02-16T20:02:45.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-07-10T19:29:28.000Z (over 8 years ago)
- Last Synced: 2024-11-11T18:45:56.594Z (about 1 month ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 7
- Watchers: 3
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-tap - karma-tap-reporter - TAP output for Karma. (Producers / JavaScript)
README
# karma-tap-reporter
> VERY simple Karma plugin to report test results in TAP.
## Installation
`package.json`
```json
{
"devDependencies": {
"karma": "~0.10",
"karma-tap-reporter": "~0.0.6"
}
}
```## Configuration
```js
// karma.conf.js
module.exports = function(config) {
config.set({
reporters: ['tap']
});
};
```Optionally you can save report to a file and turn off output to the console.
```js
reporters: ['tap'],tapReporter: {
outputFile: './unit.tap',
disableStdout: true
}
```
----For more information on Karma see the [homepage].
[homepage]: http://karma-runner.github.com