Skip to content
Snippets Groups Projects

Resolve TMSS-2810 "Heal skipped tests"

Merged Reinder Kraaij requested to merge TMSS-2810----Heal-Skipped-tests into master
Files
2
@@ -47,7 +47,7 @@ describe('getZoomTimes', () => {
expect(result.start.format('HH:mm:ss')).toEqual('00:00:00');
expect(result.end.format('HH:mm:ss')).toEqual('23:59:59');
});
// TODO : Fix Unit Test returns calculated times when selectedZoomLevel has minutes
it('returns calculated times when selectedZoomLevel has minutes', () => {
const selectedZoomLevel = { hours: 0, minutes: 30 };
@@ -60,7 +60,7 @@ describe('getZoomTimes', () => {
expect(result.start.format('HH:mm:ss')).toEqual(expectedStart);
expect(result.end.format('HH:mm:ss')).toEqual(expectedEnd);
});
// TODO : Fix Unit Test returns calculated times when selectedZoomLevel has hours
it('returns calculated times when selectedZoomLevel has hours', () => {
const selectedZoomLevel = { hours: 3, minutes: 0 };
Loading