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