Why does this fail? ```ts it("should convert measurements to a common unit", () => { expect(toCommonUnit([1, 'cm'], [2, 'm'])).not.toBeUndefined() }); ``` I would expect it to return `[[1, 'cm'], [200, 'cm']]`, but it returns `undefined`.