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