diff --git a/v-next/hardhat-chai-matchers/test/matchers/changeEtherBalance.ts b/v-next/hardhat-chai-matchers/test/matchers/changeEtherBalance.ts index c885a0ac51..5c835fb160 100644 --- a/v-next/hardhat-chai-matchers/test/matchers/changeEtherBalance.ts +++ b/v-next/hardhat-chai-matchers/test/matchers/changeEtherBalance.ts @@ -28,12 +28,6 @@ describe("INTEGRATION: changeEtherBalance matcher", { timeout: 60000 }, () => { runTests(); }); - // TODO: when V3 node is ready, add this functionality - // describe.skip("connected to a hardhat node", ()=> { - // useEnvironmentWithNode("hardhat-project"); - // runTests(); - // }); - function runTests() { let sender: HardhatEthersSigner; let receiver: HardhatEthersSigner; diff --git a/v-next/hardhat-chai-matchers/test/matchers/changeEtherBalances.ts b/v-next/hardhat-chai-matchers/test/matchers/changeEtherBalances.ts index b3f16e0afc..44dcaa1736 100644 --- a/v-next/hardhat-chai-matchers/test/matchers/changeEtherBalances.ts +++ b/v-next/hardhat-chai-matchers/test/matchers/changeEtherBalances.ts @@ -28,13 +28,6 @@ describe("INTEGRATION: changeEtherBalances matcher", { timeout: 60000 }, () => { runTests(); }); - // TODO: when V3 node is ready, add this functionality - // describe("connected to a hardhat node", ()=>{ - // process.env.CHAIN_ID = "12345"; - // useEnvironmentWithNode("hardhat-project"); - // runTests(); - // }); - function runTests() { let sender: HardhatEthersSigner; let receiver: HardhatEthersSigner; diff --git a/v-next/hardhat-chai-matchers/test/matchers/changeTokenBalance.ts b/v-next/hardhat-chai-matchers/test/matchers/changeTokenBalance.ts index 2f17784040..31d80c7bc7 100644 --- a/v-next/hardhat-chai-matchers/test/matchers/changeTokenBalance.ts +++ b/v-next/hardhat-chai-matchers/test/matchers/changeTokenBalance.ts @@ -42,12 +42,6 @@ describe( runTests(); }); - // TODO: when V3 node is ready, add this functionality - // describe("connected to a hardhat node", ()=>{ - // useEnvironmentWithNode("hardhat-project"); - // runTests(); - // }); - afterEach(() => { clearTokenDescriptionsCache(); }); diff --git a/v-next/hardhat-chai-matchers/test/matchers/events.ts b/v-next/hardhat-chai-matchers/test/matchers/events.ts index 973cd98b39..7a82459d0f 100644 --- a/v-next/hardhat-chai-matchers/test/matchers/events.ts +++ b/v-next/hardhat-chai-matchers/test/matchers/events.ts @@ -35,12 +35,6 @@ describe(".to.emit (contract events)", { timeout: 60000 }, () => { runTests(); }); - // TODO: when V3 node is ready, add this functionality - // describe("connected to a hardhat node", ()=>{ - // useEnvironmentWithNode("hardhat-project"); - // runTests(); - // }); - function runTests() { let ethers: HardhatEthers; diff --git a/v-next/hardhat-chai-matchers/test/matchers/reverted/reverted.ts b/v-next/hardhat-chai-matchers/test/matchers/reverted/reverted.ts index 506c8f29d7..14353d864a 100644 --- a/v-next/hardhat-chai-matchers/test/matchers/reverted/reverted.ts +++ b/v-next/hardhat-chai-matchers/test/matchers/reverted/reverted.ts @@ -31,12 +31,6 @@ describe("INTEGRATION: Reverted", { timeout: 60000 }, () => { runTests(); }); - // TODO: when V3 node is ready, add this functionality - // describe("connected to a hardhat node", ()=>{ - // useEnvironmentWithNode("hardhat-project"); - // runTests(); - // }); - function runTests() { // deploy Matchers contract before each test let matchers: MatchersContract; diff --git a/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWith.ts b/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWith.ts index da3f12a6e0..404c34d265 100644 --- a/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWith.ts +++ b/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWith.ts @@ -29,12 +29,6 @@ describe("INTEGRATION: Reverted with", { timeout: 60000 }, () => { runTests(); }); - // TODO: when V3 node is ready, add this functionality - // describe("connected to a hardhat node", ()=>{ - // useEnvironmentWithNode("hardhat-project"); - // runTests(); - // }); - function runTests() { // deploy Matchers contract before each test let matchers: MatchersContract; diff --git a/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWithCustomError.ts b/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWithCustomError.ts index 41cf0f5021..76dfc76f6d 100644 --- a/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWithCustomError.ts +++ b/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWithCustomError.ts @@ -30,12 +30,6 @@ describe("INTEGRATION: Reverted with custom error", { timeout: 60000 }, () => { runTests(); }); - // TODO: when V3 node is ready, add this functionality - // describe("connected to a hardhat node", ()=>{ - // useEnvironmentWithNode("hardhat-project"); - // runTests(); - // }); - function runTests() { // deploy Matchers contract before each test let matchers: MatchersContract; diff --git a/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWithPanic.ts b/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWithPanic.ts index 05c805a419..4745bfb7f5 100644 --- a/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWithPanic.ts +++ b/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWithPanic.ts @@ -30,12 +30,6 @@ describe("INTEGRATION: Reverted with panic", { timeout: 60000 }, () => { runTests(); }); - // TODO: when V3 node is ready, add this functionality - // describe("connected to a hardhat node", ()=>{ - // useEnvironmentWithNode("hardhat-project"); - // runTests(); - // }); - function runTests() { // deploy Matchers contract before each test let matchers: MatchersContract; diff --git a/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWithoutReason.ts b/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWithoutReason.ts index ac5e3f0b66..4168ebf2ea 100644 --- a/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWithoutReason.ts +++ b/v-next/hardhat-chai-matchers/test/matchers/reverted/revertedWithoutReason.ts @@ -23,12 +23,6 @@ describe("INTEGRATION: Reverted without reason", { timeout: 60000 }, () => { runTests(); }); - // TODO: when V3 node is ready, add this functionality - // describe("connected to a hardhat node", ()=>{ - // useEnvironmentWithNode("hardhat-project"); - // runTests(); - // }); - function runTests() { // deploy Matchers contract before each test let matchers: MatchersContract;