Skip to content

Commit efed72d

Browse files
committed
fix tests
1 parent 404e1b7 commit efed72d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/live/iam.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ test("getting members of a group", async () => {
3131
}
3232
});
3333

34-
test("inviting users to tenant", async () => {
34+
test("inviting users to tenant", { timeout: 60000 }, async () => {
3535
const token = await createJwt();
3636
const response = await fetch(`${baseEndpoint}/api/v1/iam/inviteUsers`, {
3737
method: "POST",
@@ -53,7 +53,7 @@ test("inviting users to tenant", async () => {
5353

5454
test("getting group roles", async () => {
5555
const token = await createJwt();
56-
const response = await fetch(`${baseEndpoint}/api/v1/iam/group/0/roles`, {
56+
const response = await fetch(`${baseEndpoint}/api/v1/iam/groups/0/roles`, {
5757
method: "GET",
5858
headers: {
5959
Authorization: `Bearer ${token}`,

0 commit comments

Comments
 (0)