pr comment

This commit is contained in:
Peter Clement 2024-09-26 11:50:03 +01:00
parent 62b94111cc
commit 4bc30a0187
1 changed files with 32 additions and 38 deletions

View File

@ -445,11 +445,8 @@ describe("Automation Scenarios", () => {
]
it.each(testCases)(
"should pass the filter when condition is %s",
"should pass the filter when condition is $condition",
async ({ condition, value, rowValue, expectPass }) => {
it(`should ${
expectPass ? "pass" : "fail"
} the filter when condition is "${condition}" and value is ${value}`, async () => {
const builder = createAutomationBuilder({
name: `Test ${condition}`,
})
@ -472,9 +469,7 @@ describe("Automation Scenarios", () => {
value,
})
.serverLog({
text: `${condition} condition ${
expectPass ? "passed" : "failed"
}`,
text: `${condition} condition ${expectPass ? "passed" : "failed"}`,
})
.run()
@ -484,7 +479,6 @@ describe("Automation Scenarios", () => {
} else {
expect(results.steps[3]).toBeUndefined()
}
})
}
)
})