describe("timestampToYear", function () {
  it("extracts the year from ISO 8601 timestamps", function () {
    expect(util.timestampToYear("1977-01-01T11:32:12Z")).toBe("1977");
    expect(util.timestampToYear("2020-03-24")).toBe("2020");
  });