Skip to content

Commit

Permalink
fix: increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyar committed Oct 23, 2023
1 parent 4f6def3 commit c043f49
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion subgraphs/venus-governance/tests/integration/alpha.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('GovernorAlpha', function () {
let user4: SignerWithAddress;

before(async function () {
this.timeout(100000000); // sometimes it takes a long time
this.timeout(10000000); // sometimes it takes a long time
governorAlpha = await ethers.getContract('GovernorAlpha');
governorAlpha2 = await ethers.getContract('GovernorAlpha2');
signers = await ethers.getSigners();
Expand Down Expand Up @@ -121,6 +121,9 @@ describe('GovernorAlpha', function () {
});

describe('Alpha2', function () {
before(async function () {
this.timeout(10000000); // sometimes it takes a long time
});
it('indexes created proposals - alpha2', async function () {
const [_, user1] = signers;
await enfranchiseAccount(user1, scaleValue(600000, 18));
Expand Down

0 comments on commit c043f49

Please sign in to comment.