We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 187c890 + f21efbc commit 391fcc0Copy full SHA for 391fcc0
1 file changed
test/sanity-check/api/team-test.js
@@ -87,7 +87,8 @@ describe('Teams API Tests', () => {
87
trackedExpect(response.uid, 'Team UID').toExist()
88
trackedExpect(response.uid, 'Team UID type').toBeA('string')
89
trackedExpect(response.name, 'Team name').toEqual(teamData.name)
90
- trackedExpect(response.organizationRole, 'Team organizationRole').toExist()
+ const orgRole = response.organizationRole || response.organizationRoles
91
+ trackedExpect(orgRole, 'Team organizationRole/organizationRoles').toExist()
92
93
// Wait for team to be fully created
94
await wait(2000)
0 commit comments