Skip to content

Commit

Permalink
test: Skip goerli tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
johngrantuk committed May 7, 2024
1 parent f3f07ec commit af7fd11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const poolAddresses = Object.values(ADDRESSES[network]).map(
);
const addresses = ADDRESSES[network];

describe('generalised exit execution', async function () {
describe.skip('generalised exit execution', async function () {
this.timeout(120000); // Sets timeout for all tests within this scope to 2 minutes

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ const migrations = (network: 1 | 137) => {
};

const remoteRpcUrls = {
[Network.MAINNET]: 'https://rpc.ankr.com/eth',
[Network.POLYGON]: 'https://rpc.ankr.com/polygon',
[Network.MAINNET]: process.env.ALCHEMY_URL,
[Network.POLYGON]: process.env.ALCHEMY_URL_POLYGON,
};

const blockNumbers = {
Expand Down

0 comments on commit af7fd11

Please sign in to comment.