it("returns false when an array does not contain an entry", () => {
    const arr = [ 1, 2, 3 ]
    expect(util.arrContains(arr, 0)).toBe(false)
  })