it("Should return string containing label", () => {
      d.data.attributes.label = "someLabel";
      content = getTooltipContent(d, styling);
      expect(content).toEqual(`${htmlBegining}someLabel</div></div>`);
    });