From 171ffd8aa33893b62913a221d745df3e217c0687 Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Tue, 15 Oct 2024 17:54:34 +0100 Subject: [PATCH] Update test name. --- packages/server/src/api/routes/tests/screen.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/server/src/api/routes/tests/screen.spec.ts b/packages/server/src/api/routes/tests/screen.spec.ts index ff13d669ad..f660589951 100644 --- a/packages/server/src/api/routes/tests/screen.spec.ts +++ b/packages/server/src/api/routes/tests/screen.spec.ts @@ -92,15 +92,15 @@ describe("/screens", () => { }) } - it("should be able to fetch only screen1 with role1", async () => { + it("should be able to fetch basic and screen1 with role1", async () => { await checkScreens(role1._id!, [screen._id!, screen1._id!]) }) - it("should be able to fetch only screen2 with role2", async () => { + it("should be able to fetch basic and screen2 with role2", async () => { await checkScreens(role2._id!, [screen._id!, screen2._id!]) }) - it("should be able to fetch all three screens with multi-inheritance role", async () => { + it("should be able to fetch basic, screen1 and screen2 with multi-inheritance role", async () => { await checkScreens(multiRole._id!, [ screen._id!, screen1._id!,