vylbot-app/tests/helpers/TimeLengthInput.test.ts
Ethan Lane 69ef94dbb5
All checks were successful
continuous-integration/drone/push Build is passing
Add placeholder tests
2024-02-03 19:29:28 +00:00

37 lines
892 B
TypeScript

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");
});