Rename COVERAGE to SOLIDITY_COVERAGS

This commit is contained in:
Leonid Logvinov 2018-03-09 15:39:50 +01:00
parent b4cb88ab26
commit c5afca53a4
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
4 changed files with 4 additions and 4 deletions

View File

@ -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",

View File

@ -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();
}

View File

@ -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)

View File

@ -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;