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

https://github.com/jstransformers/test-jstransformer

A CLI for testing jstransformer implementations.
https://github.com/jstransformers/test-jstransformer

Last synced: 8 months ago
JSON representation

A CLI for testing jstransformer implementations.

Awesome Lists containing this project

README

          

# test-jstransformer

A CLI for testing [JSTransformer](https://github.com/jstransformers/jstransformer) implementations.

[![Build Status](https://img.shields.io/travis/jstransformers/test-jstransformer/master.svg)](https://travis-ci.org/jstransformers/test-jstransformer)
[![Coverage Status](https://img.shields.io/codecov/c/github/jstransformers/test-jstransformer/master.svg)](https://codecov.io/gh/jstransformers/test-jstransformer)
[![Dependency Status](https://david-dm.org/david/jstransformers/test-jstransformer/status.svg)](https://david-dm.org/jstransformers/test-jstransformer)
[![NPM version](https://img.shields.io/npm/v/test-jstransformer.svg)](https://www.npmjs.org/package/test-jstransformer)

## Installation

npm install test-jstransformer --save-dev

## Usage

In your package.json add:

```js
{
"scripts": {
"coverage": "test-jstransformer coverage",
"test": "test-jstransformer"
}
}
```

Then copy either example/simple or example/multi into a folder called "test" in your jstransformer's repo.

You can then run tests using:

```
npm test
```

and generate coverage using:

```
npm run coverage
```

## License

MIT