Increase AccountLocks timeouts as the lock limit increased
This commit is contained in:
parent
355aa87d91
commit
788ceda08d
|
@ -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())
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue