Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix spacing
  • Loading branch information
cgewecke committed Apr 5, 2024
commit 4f32cfd490f3f8b356f8be16136781c18988e8c7
3 changes: 2 additions & 1 deletion plugins/resources/nomiclabs.ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ class PluginUI extends UI {
`${c.red('the path you specified for it is wrong.')}`,

'tests-fail': `${x} ${c.bold(args[0])} ${c.red('test(s) failed under coverage.')}`,

'hardhat-viem': "'hardhat-viem' requires an environment variable to be set when used with the solidity-coverage plugin"
}

Expand All @@ -96,4 +97,4 @@ class PluginUI extends UI {

}

module.exports = PluginUI;
module.exports = PluginUI;
2 changes: 1 addition & 1 deletion test/integration/errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ describe('Hardhat Plugin: error cases', function() {
} catch(err){
assert(
err.message.includes('requires an environment variable'),
`Should notify when mocha parallel flag is set:: ${err.message}`
`Should error when viem plugin is used without env variable:: ${err.message}`
);
}

Expand Down