Fix loop.spec.ts timeout failures.
This commit is contained in:
parent
499c7e1e01
commit
e9923bf90b
|
@ -21,6 +21,11 @@ describe("Attempt to run a basic loop automation", () => {
|
|||
})
|
||||
|
||||
beforeEach(async () => {
|
||||
const { automations } = await config.api.automation.fetch()
|
||||
for (const automation of automations) {
|
||||
await config.api.automation.delete(automation)
|
||||
}
|
||||
|
||||
table = await config.api.table.save(basicTable())
|
||||
await config.api.row.save(table._id!, {})
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue