add test cases for system property of query object

This commit is contained in:
2025-01-23 04:00:51 -08:00
parent c647da4931
commit 3366a764f9

View File

@@ -52,5 +52,19 @@ describe("QueryResolvers", () => {
expect(response.body.singleResult.errors).toBeUndefined();
expect(response.body.singleResult.data?.systems).toHaveLength(systems.length);
});
})
});
describe("system", () => {
it("returns a system for an ID from the repository", async () => {
});
it("returns null if no id provided", async () => {
});
it("returns null if there is no system", async () => {
});
});
});