it("should return the selected column index with the value of the number of columns minus one", function() {
      const rows = [["A1", "B1"], ["A2", "B2"]];
      const selectedCell = [2,1];
      const expectedResult = [1,1];
      expect(correctSelectedCellIndex(selectedCell, rows)).to.deep.equals(expectedResult);