it('should convert "06:30" to 420 seconds', () => {
      const time = '06:30';
      const actual = service.toNumber(time);
      const expected = 6 * 60 + 30;
      expect(actual).toBe(expected);