Fix automation.spec.ts.
This commit is contained in:
parent
4abf0e8431
commit
b077e5f24b
|
@ -290,8 +290,7 @@ describe("/automations", () => {
|
||||||
await setup.delay(500)
|
await setup.delay(500)
|
||||||
let elements = await getAllTableRows(config)
|
let elements = await getAllTableRows(config)
|
||||||
// don't test it unless there are values to test
|
// don't test it unless there are values to test
|
||||||
if (elements.length > 1) {
|
if (elements.length >= 1) {
|
||||||
expect(elements.length).toBeGreaterThanOrEqual(MAX_RETRIES)
|
|
||||||
expect(elements[0].name).toEqual("Test")
|
expect(elements[0].name).toEqual("Test")
|
||||||
expect(elements[0].description).toEqual("TEST")
|
expect(elements[0].description).toEqual("TEST")
|
||||||
return
|
return
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
import * as automation from "../../index"
|
|
||||||
import { basicTable } from "../../../tests/utilities/structures"
|
import { basicTable } from "../../../tests/utilities/structures"
|
||||||
import {
|
import {
|
||||||
Table,
|
Table,
|
||||||
|
@ -13,26 +12,20 @@ import { createAutomationBuilder } from "../utilities/AutomationTestBuilder"
|
||||||
import TestConfiguration from "../../../tests/utilities/TestConfiguration"
|
import TestConfiguration from "../../../tests/utilities/TestConfiguration"
|
||||||
|
|
||||||
describe("Attempt to run a basic loop automation", () => {
|
describe("Attempt to run a basic loop automation", () => {
|
||||||
let config: TestConfiguration
|
const config = new TestConfiguration()
|
||||||
let table: Table
|
let table: Table
|
||||||
|
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
await automation.init()
|
await config.init()
|
||||||
})
|
})
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
config = new TestConfiguration()
|
|
||||||
await config.init()
|
|
||||||
|
|
||||||
table = await config.api.table.save(basicTable())
|
table = await config.api.table.save(basicTable())
|
||||||
await config.api.row.save(table._id!, {})
|
await config.api.row.save(table._id!, {})
|
||||||
})
|
})
|
||||||
afterEach(async () => {
|
|
||||||
config.end()
|
|
||||||
})
|
|
||||||
|
|
||||||
afterAll(async () => {
|
afterAll(async () => {
|
||||||
await automation.shutdown()
|
config.end()
|
||||||
})
|
})
|
||||||
|
|
||||||
it("attempt to run a basic loop", async () => {
|
it("attempt to run a basic loop", async () => {
|
||||||
|
|
Loading…
Reference in New Issue