it('should render hour, 2 digit minutes (less than 10) and seconds', () => {
    const duration = 'PT2H09M33S';
    const actual = pipe.transform(duration, []);
    const expected = '02:09:33';
    expect(actual).toBe(expected);