Skip to content

Commit

Permalink
chore: add test timeouts for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Keyrxng committed Aug 29, 2024
1 parent 377584c commit 91626b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ describe("Plugin tests", () => {

expect(tx.from).toEqual(account);
expect(tx2.from).toEqual(account);
});
}, 30000);

it("Should handle an issues.closed event", async () => {
const context = createContextInner(
Expand All @@ -118,7 +118,7 @@ describe("Plugin tests", () => {

verifyTx(tx);
verifyTx(tx2);
});
}, 30000);
});

describe("", () => {
Expand All @@ -139,7 +139,7 @@ describe("", () => {
}

expect(result).toEqual({});
});
}, 30000);
});

function verifyTx(tx: ethers.providers.TransactionReceipt) {
Expand Down

0 comments on commit 91626b5

Please sign in to comment.