Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-ava

Package Overview
Dependencies
Maintainers
3
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-ava

Run AVA tests

  • 3.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4K
decreased by-0.63%
Maintainers
3
Weekly downloads
 
Created
Source

gulp-ava Build Status

Run AVA tests

Install

$ npm install --save-dev gulp-ava

Usage

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 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. You must have nyc as a devDependency. nyc options can be defined in package.json.

Keywords

FAQs

Package last updated on 14 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc