# gulp-ava
**Repository Path**: mirrors_avajs/gulp-ava
## Basic Information
- **Project Name**: gulp-ava
- **Description**: Run AVA tests
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-09-24
- **Last Updated**: 2025-12-27
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# gulp-ava [](https://travis-ci.org/avajs/gulp-ava)
> Run [AVA](https://ava.li) tests
## Install
```
$ npm install --save-dev gulp-ava
```
## Usage
```js
const gulp = require('gulp');
const ava = require('gulp-ava');
exports.default = () => (
gulp.src('test.js')
// `gulp-ava` needs file paths, so you can't have any plugins before it
.pipe(ava({verbose: true}))
);
```
## API
### ava(options?)
This plugin adheres to AVA [options](https://github.com/avajs/ava#configuration) in package.json. You can also specify options in the plugin, as seen above, but prefer the package.json approach whenever possible.
`gulp-ava` specific options:
#### silent
Type: `boolean`
Default: `false`
Only print output on failure.
#### nyc
Type: `boolean`
Default: `false`
Run AVA with [`nyc`](https://github.com/istanbuljs/nyc). You must have `nyc` as a devDependency. `nyc` [options](https://github.com/istanbuljs/nyc#configuring-nyc) can be defined in package.json.