it("at the start", () => {
      const arr = [1, 2, 3];
      removeInPlace(arr, 1);
      assert.deepStrictEqual(arr, [2, 3]);
    });