ConsenSysMesh / web3studio-bootleg

The Shared Royalty Non-Fungible Token (a.k.a Bootleg) is an open source project started by the ConsenSys Web3Studio team. The purpose of the Shared Royalty Non-Fungible Token (SRNFT) is to make any royalty business model, from the oil and gas industry to entertainment, easy to manage with the Ethereum blockchain .
https://consensys.net/web3studio/bootleg/
Apache License 2.0
91 stars 30 forks source link

Coverage is not generated if development network is used during truffle test run #177

Closed brian-lc closed 5 years ago

brian-lc commented 5 years ago

Bug

Adding a development network to the bootleg common truffle config causes yarn test to not generate any coverage.

Behavior observed:


Couldn't find any covered files
Stopping Ganache
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

Change made to truffle-config to cause this behavior.

      development: {
        host: '127.0.0.1',
        port: 7545,
        network_id: '*' // Match any network id
      }