
Security News
NVD Concedes Inability to Keep Pace with Surging CVE Disclosures in 2025
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
beater: bouzuya's easy test runner. beater is inspired by eater.
run()
runWithOptions()
assert()
.*.d.ts
is included).$ npm install --save-dev beater
// test/index.js
const assert = require('assert');
const { run } = require('beater');
const test1 = function simple_test() {
assert(1 === 1);
};
const test2 = function promise_test() {
return new Promise((resolve) => {
assert(1 === 1);
resolve();
});
};
const test3 = async function async_fn_test() {
await new Promise((resolve) => setTimeout(resolve, 0));
assert(1 === 1);
};
run([test1, test2, test3]).catch(() => process.exit(1));
$ node test/index.js
TAP version 13
1..3
ok 1 - simple_test
ok 2 - promise_test
ok 3 - async_fn_test
$ node test/index.js | tap-dot
9.0.1 (2020-04-11)
build(deps): update dependencies
build(deps-dev): update devDependencies
Bump eslint-config-prettier from 6.9.0 to 6.10.0 (7ee3e2d)
Bump sinon from 8.0.4 to 8.1.0 (1affec4)
Bump typescript from 3.7.4 to 3.7.5 (a8fe209)
refactor!: drop support for node.js v8 (02564a4)
build: add eslint and prettier (80d3b07)
build: bump sinon from 8.0.1 to 8.1.1 (5bb1f3c)
build: stop searching for other eslint configs (1d9d266)
build(deps-dev): bump @typescript-eslint 2.17.0 to 2.18.0 (482617c)
build(deps-dev): bump babel from 7.8.3 to 7.8.4 (f476a4c)
build(deps-dev): update devDependencies (7d6464b)
build(deps): update dependencies (945b342)
refactor: apply eslint (573cbae)
style: apply prettier (a57d6bf)
FAQs
beater: bouzuya's easy test runner. it is inspired by eater.
The npm package beater receives a total of 23 weekly downloads. As such, beater popularity was classified as not popular.
We found that beater 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
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.
Security News
Join Socket for exclusive networking events, rooftop gatherings, and one-on-one meetings during BSidesSF and RSA 2025 in San Francisco.