Skip to content

Commit

Permalink
fix(header): fix layout header test (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
nnixaa authored Jan 19, 2018
1 parent f15470a commit b97ee8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/layout-header.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('nb-layout-header', () => {

it('should align items vertically', () => {
element(by.css('nb-layout-header nav')).getCssValue('justify-content').then(value => {
expect(value).toEqual('normal');
expect(value).toEqual('flex-start');
});
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

nav {
align-items: center;
justify-content: flex-start;
display: flex;
}

Expand Down

0 comments on commit b97ee8f

Please sign in to comment.