Don't automatically rebuild when running yarn test

This commit is contained in:
Alex Browne
2018-06-04 13:36:34 -07:00
parent 79472552aa
commit c4538cada7
15 changed files with 30 additions and 15 deletions

View File

@@ -13,7 +13,8 @@
"prebuild": "run-s clean compile generate_contract_wrappers copy_artifacts",
"copy_artifacts": "copyfiles './artifacts/**/*' './contracts/**/*' ./lib",
"build": "tsc",
"test": "run-s build run_mocha",
"test": "yarn run_mocha",
"rebuild-and-test": "run-s clean build test",
"test:coverage": "SOLIDITY_COVERAGE=true run-s build run_mocha coverage:report:text coverage:report:lcov",
"run_mocha": "mocha lib/test/**/*_test.js lib/test/global_hooks.js --bail --exit",
"generate_contract_wrappers": "abi-gen --abis 'artifacts/Metacoin.json' --template ../contract_templates/contract.handlebars --partials '../contract_templates/partials/**/*.handlebars' --output src/contract_wrappers --backend ethers && prettier --write 'src/contract_wrappers/**.ts'",