Skip to content

Commit

Permalink
working on test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
psachmann committed Dec 17, 2024
1 parent fb8f5a7 commit b6e402b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/store/course-room-details.unit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -817,5 +817,15 @@ describe("course-room module", () => {
);
});
});

describe("getCommonCartridgeApi", () => {
it("should return the CommonCartridgeApiInterface", () => {
const courseRoomDetailsModule = new CourseRoomDetailsModule({});

const result = courseRoomDetailsModule.getCommonCartridgeApi();

expect(result).toBeInstanceOf(Object);
});
});
});
});

0 comments on commit b6e402b

Please sign in to comment.