spilit napi and wasm test

This commit is contained in:
Aliaksei Chapyzhenka 2020-11-28 18:54:29 -08:00
parent e9c24bb3db
commit 082646838d
6 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,9 @@
"description": "Value Change Dump (VCD) parser", "description": "Value Change Dump (VCD) parser",
"main": "lib/index.js", "main": "lib/index.js",
"scripts": { "scripts": {
"test": "eslint bin lib test && nyc -r=text -r=lcov mocha", "test_napi": "nyc -r=text -r=lcov mocha test/napi_*",
"test_wasm": "nyc -r=text -r=lcov mocha test/wasm_*",
"test": "eslint bin lib test && npm run test_napi && npm run test_wasm",
"testonly": "nyc -r=text -r=lcov mocha", "testonly": "nyc -r=text -r=lcov mocha",
"watch": "mocha --watch", "watch": "mocha --watch",
"install": "node bin/build.js", "install": "node bin/build.js",