it("should return two rows with two cells if data has two lines and a tab separator for each line", function() {
      const data = "title\tvalue\ntest\t1";
      const expectedResult = [["title", "value"], ["test", "1"]];
      expect(getTableFromClipBoard(data)).to.deep.equals(expectedResult);
    });