Rename COVERAGE to SOLIDITY_COVERAGS
This commit is contained in:
parent
b4cb88ab26
commit
c5afca53a4
@ -13,7 +13,7 @@
|
||||
"copy_artifacts": "copyfiles './src/artifacts/**/*' ./lib",
|
||||
"build": "tsc",
|
||||
"test": "run-s build run_mocha",
|
||||
"test:coverage": "COVERAGE=true run-s build run_mocha coverage:report:text",
|
||||
"test:coverage": "SOLIDITY_COVERAGE=true run-s build run_mocha coverage:report:text",
|
||||
"run_mocha": "mocha 'lib/test/**/*.js' --timeout 10000 --bail --exit",
|
||||
"compile:comment": "Yarn workspaces do not link binaries correctly so we need to reference them directly https://github.com/yarnpkg/yarn/issues/3846",
|
||||
"compile": "node ../deployer/lib/src/cli.js compile --contracts ${npm_package_config_contracts} --contracts-dir src/contracts --artifacts-dir src/artifacts",
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { getCoverageSubproviderSingleton } from '@0xproject/dev-utils';
|
||||
|
||||
after('generate coverage report', async () => {
|
||||
if (process.env.COVERAGE) {
|
||||
if (process.env.SOLIDITY_COVERAGE) {
|
||||
const coverageSubprovider = getCoverageSubproviderSingleton();
|
||||
await coverageSubprovider.writeCoverageAsync();
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
## v0.3.0 - _TBD, 2018_
|
||||
|
||||
* Add coverage subprovider if enabled (#426)
|
||||
* Add coverage subprovider if SOLIDITY_COVERAGE env variable is true (#426)
|
||||
* Refactor `BlockchainLifecycle` to work with in-process ganache (#426)
|
||||
* Remove `RPC` class and move it's logic to `Web3Wrapper` (#426)
|
||||
|
||||
|
@ -35,7 +35,7 @@ export const web3Factory = {
|
||||
},
|
||||
getRpcProvider(config: Web3Config = {}): Web3.Provider {
|
||||
const provider = new ProviderEngine();
|
||||
if (process.env.COVERAGE) {
|
||||
if (process.env.SOLIDITY_COVERAGE) {
|
||||
provider.addProvider(getCoverageSubproviderSingleton());
|
||||
}
|
||||
const hasAddresses = _.isUndefined(config.hasAddresses) || config.hasAddresses;
|
||||
|
Loading…
x
Reference in New Issue
Block a user