Files
2026-07-13 12:48:55 +08:00

10 lines
487 B
JavaScript

/* eslint-disable no-console */
const exec = require('shelljs').exec
const codecov = '15039ad1-b495-48cd-b4a0-bcf124c9b318' //i don't really care if you steal this.
//let cmd=`./node_modules/.bin/nyc --reporter=text ./node_modules/.bin/tape ./test/**/*.test.js`
//run all the tests
const cmd = `./node_modules/.bin/c8 --reporter=text-lcov ./node_modules/.bin/tape ./tests/**/*.test.js > coverage.lcov && ./node_modules/.bin/codecov -t ${codecov}`
exec(cmd)
console.log('\n 🏃 done!')