37 lines
892 B
TypeScript
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");
|
||
|
});
|