Skip to content
Merged
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
Remove default network integration test
  • Loading branch information
cgewecke committed Feb 5, 2024
commit e7589a0ce6bb2b82b903ab71b8743500b4cf7c50
19 changes: 0 additions & 19 deletions test/integration/standard.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,25 +53,6 @@ describe('Hardhat Plugin: standard use cases', function() {
);
});

it('default network ("hardhat")', async function(){
mock.install('Simple', 'simple.js', solcoverConfig);
mock.hardhatSetupEnv(this);

this.env.hardhatArguments.network = "hardhat"

await this.env.run("coverage");

assert(
mock.loggerOutput.val.includes("HardhatEVM"),
`Should have displayed HardhatEVM version: ${mock.loggerOutput.val}`
);

assert(
mock.loggerOutput.val.includes("hardhat"),
`Should have used 'hardhat' network name: ${mock.loggerOutput.val}`
);
});

it('uses inheritance', async function() {
mock.installDouble(
['Proxy', 'Owned'],
Expand Down