Skip to content

Commit

Permalink
✨ move tests to goerli and sepolia
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Jun 23, 2022
1 parent ea928b2 commit 170a95f
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .mocharc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"require": "ts-node/register/files",
"ignore": ["test/fixture-projects/**/*"],
"timeout": 50000
"timeout": 100000
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ const config: HardhatUserConfig = {
// Just a testing private key with some Rinkeby & Kovan ether :-D - there is nothing to be gained however by stealing it ;-)
signer:
"0xe1904817e407877ea09135933f39121aa68ed0d9729d301084c544204171d100",
networks: ["rinkeby", "kovan"],
networks: ["goerli", "sepolia"],
// A free Infura API key :-D - there is nothing to be gained however by stealing it ;-)
rpcUrls: [
"https://rinkeby.infura.io/v3/a6a7e3934ce44d54a27a256079a3b8a2",
"https://kovan.infura.io/v3/a6a7e3934ce44d54a27a256079a3b8a2",
"https://goerli.infura.io/v3/a6a7e3934ce44d54a27a256079a3b8a2",
"https://rpc.sepolia.org",
],
gasLimit: 1.2 * 10 ** 6,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import { useEnvironment } from "./helpers";
import { assert, expect } from "chai";
import { NomicLabsHardhatPluginError } from "hardhat/plugins";

describe("Plugin test xdeploy on Rinkeby and Kovan with constructor", function () {
describe("Plugin test xdeploy on Goerli and Sepolia with constructor", function () {
describe("Hardhat Runtime Environment (HRE) extension", function () {
useEnvironment("rinkeby-kovan-project-with-constructor");
useEnvironment("goerli-sepolia-project-with-constructor");
it("calling xdeploy successfully", async function () {
return this.hre.run("xdeploy");
});
Expand Down

0 comments on commit 170a95f

Please sign in to comment.