vylbot-app/tests/helpers/TimeLengthInput.test.ts

37 lines
892 B
TypeScript
Raw Permalink Normal View History

2024-02-03 19:29:28 +00:00
describe('constructor', () => {
test.todo("EXPECT properties to be set");
test.todo("GIVEN input has commas, EXPECT these to be removed");
});
describe('GetDays', () => {
test.todo("EXPECT day value to be returned");
});
describe('GetHours', () => {
test.todo("EXPECT hour value to be returned");
});
describe('GetMinutes', () => {
test.todo("EXPECT minute value to be returned");
});
describe('GetSeconds', () => {
test.todo("EXPECT second value to be returned");
});
describe('GetMiliseconds', () => {
test.todo("EXPECT total time returned in miliseconds");
});
describe('GetDateFromNow', () => {
test.todo("EXPECT date returned to be value added to now");
});
describe("GetLength", () => {
test.todo("EXPECT stringified value to be returned");
});
describe("GetLengthShort", () => {
test.todo("EXPECT stringified value to be returned");
});