18 lines
437 B
TypeScript
18 lines
437 B
TypeScript
|
describe("GIVEN valid input", () => {
|
||
|
test.todo("EXPECT interaction replied");
|
||
|
|
||
|
test.todo("EXPECT embed details are correct");
|
||
|
});
|
||
|
|
||
|
describe("GIVEN description is undefined", () => {
|
||
|
test.todo("EXPECT error replied");
|
||
|
|
||
|
test.todo("EXPECT function returned");
|
||
|
});
|
||
|
|
||
|
describe("GIVEN description is more than 255 characters long", () => {
|
||
|
test.todo("EXPECT error replied");
|
||
|
|
||
|
test.todo("EXPECT function returned");
|
||
|
});
|