it("should return three rows with three cells each if data has three lines and the longest rows has two cells", function() {
      const data = "title\tvalue\tdata\ntest\n1";
      const expectedResult = [["title", "value", "data"], ["test", "", ""], ["1", "", ""]];
      expect(getTableFromClipBoard(data)).to.deep.equals(expectedResult);
    });