it("returns true when an array contains an entry", () => {
    const arr = [ 1, 2, 3 ]
    expect(util.arrContains(arr, 2)).toBe(true)
  })