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