20 lines
513 B
TypeScript
20 lines
513 B
TypeScript
|
describe("GIVEN description is null", () => {
|
||
|
test.todo("EXPECT error replied");
|
||
|
});
|
||
|
|
||
|
describe("GIVEN description is greater than 255 characters", () => {
|
||
|
test.todo("EXPECT error replied");
|
||
|
});
|
||
|
|
||
|
describe("GIVEN moon count setting exists", () => {
|
||
|
test.todo("EXPECT existing entity to be updated");
|
||
|
});
|
||
|
|
||
|
describe("GIVEN moon count setting does not exist", () => {
|
||
|
test.todo("EXPECT new entity to be created");
|
||
|
});
|
||
|
|
||
|
test.todo("EXPECT setting to be saved");
|
||
|
|
||
|
test.todo("EXPECT embed to be replied");
|