Add pagination component

This commit is contained in:
Giuseppe Digilio
2017-05-19 18:22:41 +02:00
parent e36ebcd72e
commit 412a3a3970
21 changed files with 783 additions and 27 deletions

View File

@@ -58,7 +58,7 @@ describe('HeaderComponent', () => {
});
it("should close the menu", () => {
expect(menu.classList).not.toContain('in');
expect(menu.classList).not.toContain('show');
});
});
@@ -73,7 +73,7 @@ describe('HeaderComponent', () => {
});
it("should open the menu", () => {
expect(menu.classList).toContain('in');
expect(menu.classList).toContain('show');
});
});