mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-03-16 22:10:28 +00:00
Eslint fix within the ExplorerHeader tests
This commit is contained in:
parent
7a184274a5
commit
a528af836d
1 changed files with 2 additions and 1 deletions
|
|
@ -24,7 +24,8 @@ describe('ExplorerHeader', () => {
|
|||
});
|
||||
|
||||
it('#page', () => {
|
||||
expect(shallow(<ExplorerHeader {...mockProps} page={{ id: 'a', admin_display_title: 'test' }} />)).toMatchSnapshot();
|
||||
const wrapper = shallow(<ExplorerHeader {...mockProps} page={{ id: 'a', admin_display_title: 'test' }} />);
|
||||
expect(wrapper).toMatchSnapshot();
|
||||
});
|
||||
|
||||
it('#onClick', () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue