Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions plugins/resources/truffle.utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,12 @@ function normalizeConfig(config){
delete config.mocha.reporterOptions;
}

// Truffle V4 style solc settings are honored over V5 settings. Apparently it's common
// for both to be present in the same config (as an error).
if (typeof config.solc === "object" ){
config.solc.optimizer = { enabled: false };
}

return config;
}

Expand Down
25 changes: 24 additions & 1 deletion test/units/truffle/standard.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,36 @@ describe('Truffle Plugin: standard use cases', function() {
});

// This test errors if the reporter is not re-designated as 'spec' correctly
it('gracefully disables eth-gas-reporter', async function(){
it('disables eth-gas-reporter', async function(){
truffleConfig.mocha = { reporter: 'eth-gas-reporter' };

mock.install('Simple', 'simple.js', solcoverConfig);
await plugin(truffleConfig);
});

it('disables optimization when truffle-config uses V4 format', async function(){
solcoverConfig = {
silent: process.env.SILENT ? true : false,
istanbulReporter: ['json-summary', 'text']
};

truffleConfig.solc = {
optimizer: { enabled: true, runs: 200 }
};

mock.install('Simple', 'simple.js', solcoverConfig);
await plugin(truffleConfig);

const expected = [
{
file: mock.pathToContract(truffleConfig, 'Simple.sol'),
pct: 100
}
];

verify.lineCoverage(expected);
});

// This test tightly coupled to the ganache version in production deps
// "test-files" project solcoverjs includes `client: require('ganache-cli')`
it('config: client', async function(){
Expand Down