vylbot-app/tests/database/entities/304276391837302787/Moon.test.ts

22 lines
552 B
TypeScript
Raw Normal View History

2024-09-21 14:41:38 +01:00
describe("constructor", () => {
describe("GIVEN entity created", () => {
test.todo("EXPECT MoonNumber to be set");
test.todo("EXPECT Description to be set");
test.todo("EXPECT UserId to be set");
});
});
describe("FetchMoonsByUserId", () => {
test.todo("EXPECT list of moons to be returned");
});
describe("FetchPaginatedMoonsByUserId", () => {
test.todo("EXPECT list of moons to be returned with page list");
});
describe("FetchMoonCountByUserId", () => {
test.todo("EXPECT count to be returned");
});