Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.js

module.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)_