Increase AccountLocks timeouts as the lock limit increased

This commit is contained in:
Eric Mastro 2022-12-14 12:38:58 +11:00
parent 355aa87d91
commit 788ceda08d
No known key found for this signature in database
GPG Key ID: 141E3048D95A4E63
2 changed files with 5 additions and 1 deletions

View File

@ -145,6 +145,8 @@ describe("Account Locks", function () {
}
it("supports a limited amount of locks per account", async function () {
this.timeout(100000)
for (let i = 0; i < maxlocks; i++) {
await addLock()
}
@ -160,6 +162,8 @@ describe("Account Locks", function () {
})
it("handles maximum amount of locks within gas limit", async function () {
this.timeout(100000)
let ids = []
for (let i = 0; i < maxlocks; i++) {
ids.push(await addLock())

View File

@ -834,7 +834,7 @@ describe("Marketplace", function () {
})
})
describe.only("gas reporting limits", function () {
describe("gas reporting limits", function () {
before(function () {
if (!process.env.REPORT_GAS) {
this.skip()