15 lines
No EOL
505 B
TypeScript
15 lines
No EOL
505 B
TypeScript
describe("GetSetting", () => {
|
|
test.todo("EXPECT setting value to be returned");
|
|
|
|
test.todo("GIVEN server is not set up, EXPECT default value to be returned");
|
|
|
|
test.todo("GIVEN setting is not set, EXPECT default value to be returned");
|
|
});
|
|
|
|
describe("SetSetting", () => {
|
|
test.todo("GIVEN setting is not set, EXPECT value to be added");
|
|
|
|
test.todo("GIVEN setting is already set, EXPECT value to be updated");
|
|
|
|
test.todo("GIVEN server is not set up, EXPECT nothing to happen");
|
|
}); |