Skip to content

Commit

Permalink
Merge pull request #44 from Hats-Protocol/remove-networks
Browse files Browse the repository at this point in the history
Remove Goerli and PGN tests
  • Loading branch information
gershido authored Mar 23, 2024
2 parents 7e26443 + 73e765b commit 495c854
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 363 deletions.
5 changes: 3 additions & 2 deletions example.env
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
GOERLI_RPC=
MAINNET_RPC=
POLYGON_RPC=
OPTIMISM_RPC=
GNOSIS_RPC=
ARBITRUM_RPC=
SEPOLIA_RPC=
BASE_RPC=
CELO_RPC=
ETHERSCAN_KEY=
PGN_RPC=

1 change: 1 addition & 0 deletions test/arbitrumDeployments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ describe("Arbitrum deployments", () => {
beforeAll(async () => {
anvil = createAnvil({
forkUrl: process.env.ARBITRUM_RPC,
startTimeout: 20000,
});
await anvil.start();

Expand Down
1 change: 1 addition & 0 deletions test/baseDeployments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ describe("Base deployments", () => {
beforeAll(async () => {
anvil = createAnvil({
forkUrl: process.env.BASE_RPC,
startTimeout: 20000,
});
await anvil.start();

Expand Down
1 change: 1 addition & 0 deletions test/celoDeployments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ describe("Celo deployments", () => {
beforeAll(async () => {
anvil = createAnvil({
forkUrl: process.env.CELO_RPC,
startTimeout: 20000,
});
await anvil.start();

Expand Down
161 changes: 0 additions & 161 deletions test/goerliDeployments.test.ts

This file was deleted.

1 change: 1 addition & 0 deletions test/mainnetDeployments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ describe("Mainnet deployments", () => {
beforeAll(async () => {
anvil = createAnvil({
forkUrl: process.env.MAINNET_RPC,
startTimeout: 20000,
});
await anvil.start();

Expand Down
1 change: 1 addition & 0 deletions test/optimismDeployments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ describe("Optimism deployments", () => {
beforeAll(async () => {
anvil = createAnvil({
forkUrl: process.env.OPTIMISM_RPC,
startTimeout: 20000,
});
await anvil.start();

Expand Down
Loading

0 comments on commit 495c854

Please sign in to comment.