1
0
Fork 0
mirror of synced 2024-09-20 03:08:18 +12:00

ensure branch step is in output

This commit is contained in:
Peter Clement 2024-09-03 16:29:52 +01:00
parent 839292b84d
commit 484b329bc8

View file

@ -63,7 +63,7 @@ describe("Automation Scenarios", () => {
},
})
.run()
expect(results.steps[3].outputs.status).toContain("branch1 branch taken")
expect(results.steps[4].outputs.message).toContain("Branch 1.1")
})
@ -91,7 +91,9 @@ describe("Automation Scenarios", () => {
},
})
.run()
expect(results.steps[0].outputs.status).toContain(
"activeBranch branch taken"
)
expect(results.steps[1].outputs.message).toContain("Active user")
})