Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@build-chores/test
Advanced tools
@build-chores/test
Testing JS projects is complicated.
Use your custom Babel configuration with the AVA test runner and instrument code coverage using nyc.
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.
Check out our contributing.md to get started.
FAQs
Testing JS projects is complicated.
The npm package @build-chores/test receives a total of 0 weekly downloads. As such, @build-chores/test popularity was classified as not popular.
We found that @build-chores/test demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.