Test exclude members
This commit is contained in:
parent
1301b23f02
commit
ce2a610c00
|
@ -600,6 +600,25 @@ describe("scim", () => {
|
||||||
totalResults: 1,
|
totalResults: 1,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it("can fetch groups excluding members", async () => {
|
||||||
|
const response = await getScimGroups({
|
||||||
|
params: { excludedAttributes: "members" },
|
||||||
|
})
|
||||||
|
|
||||||
|
expect(response).toEqual({
|
||||||
|
Resources: expect.arrayContaining(
|
||||||
|
groups.map(g => {
|
||||||
|
const { members, ...groupData } = g
|
||||||
|
return groupData
|
||||||
|
})
|
||||||
|
),
|
||||||
|
itemsPerPage: 25,
|
||||||
|
schemas: ["urn:ietf:params:scim:api:messages:2.0:ListResponse"],
|
||||||
|
startIndex: 1,
|
||||||
|
totalResults: groupCount,
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue