Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/firtoz/travis-fold-reporter
Inserts travis fold messages for karma when tests start and finish
https://github.com/firtoz/travis-fold-reporter
Last synced: about 9 hours ago
JSON representation
Inserts travis fold messages for karma when tests start and finish
- Host: GitHub
- URL: https://github.com/firtoz/travis-fold-reporter
- Owner: firtoz
- License: mit
- Created: 2016-08-27T14:13:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-27T14:31:30.000Z (over 8 years ago)
- Last Synced: 2024-11-17T03:41:45.011Z (2 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# karma-travis-fold-reporter
Inserts travis fold messages when tests start and finish
## Installation
Download node at [nodejs.org](http://nodejs.org) and install it, if you haven't already.
```sh
npm install karma-travis-fold-reporter --save-dev
```## Configuration
```
// karma.conf.jsmodule.exports = function(config) {
config.set({
// reporters configuration
reporters: [
// ...
'travis-fold'
],travisFoldReporter: {
foldName: 'my-fold-name-here',
}
});
};
```## Dependencies
- [travis-fold](https://github.com/macbre/travis-fold): Tiny Module for emitting folding syntax for Travis CI output
## Dev Dependencies
None
## License
MIT
_Generated by [package-json-to-readme](https://github.com/zeke/package-json-to-readme)_