I have a condition to test.
- If the user is Admin -> exppect admin permissions
- If the user is regular -> expect basic permisiions
But the "expect" ans "should" do not works with conditions and fail after first non admin element
if (user.range == 'Admin') {
expect(user.Permissions, `User ${user.Username} that has range: Admin, should have Admin Permissions`)
.eql(adminPermissions);
}
if (user.range == 'Operator') {
expect(user.Permissions, `User ${user.Username} that has range: Operator, should have Operator Permissions`)
.eql(operatorPermissions);
}