it("should return highlight-top class if header style top is selected", function() {
      const headerStyle = {top: true};
      const expectedClass = "highlight-top ";
      expect(highlightedClass(headerStyle)).to.be.equal(expectedClass);
    });