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

@build-chores/test

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@build-chores/test

Testing JS projects is complicated.

  • 0.9.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

@build-chores/test

Testing JS projects is complicated.

Synopsis

License: GPL v3 npm version Build Status

Use your custom Babel configuration with the AVA test runner and instrument code coverage using nyc.

Usage

Install the @build-chores/test package into your project:

yarn install --dev @build-chores/test ava@1.0.0-beta.8

To make use of AVA add the following entry to your package.json. It will use your local .babelrc to compile your source code and use babel-plugin-istanbul to instrument the code. See the example package.json for a template.

{
  "ava": {
    "require": "@build-chores/test"
  }
}

ava is declared as a peer dependency. This means it has to be installed along the @build-chores/test package. Make sure to install either ava@1.0.0-beta.8 or ava@next tag. The default ava package installs a very old version.

Configure code coverage by placing a .nycrc in your project root. See the example .nycrc for a template.

{
  "sourceMap": false,
  "instrument": true,
  "all": true,
  "include": [
    "src/**/*.js"
  ]
}

Please note that in order for all to work and instrument all source files, instrument has to be set to true.

Provide the test and coverage script targets to your package.json. AVA sets your NODE_ENV to test automatically. See the example package.json for a template.

{
  "scripts": {
    "test": "ava",
    "test:coverage": "nyc yarn test",
    "test:watch": "yarn test -w"
  }
}

You are ready to test your files.

Contribute

Check out our contributing.md to get started.

License

FAQs

Package last updated on 26 Feb 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