Use material design for side panel drawer
Change-Id: I7c89f3022accd6cda524fded63fe84e42e2fab62
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
import React from 'react';
|
||||
import { shallow } from 'enzyme';
|
||||
import { SidePanel } from '../../../src/features/common/SidePanel';
|
||||
|
||||
describe('common/SidePanel', () => {
|
||||
it('renders node with correct class name', () => {
|
||||
const props = {
|
||||
common: {},
|
||||
actions: {},
|
||||
};
|
||||
const renderedComponent = shallow(
|
||||
<SidePanel {...props} />
|
||||
);
|
||||
|
||||
expect(
|
||||
renderedComponent.find('.common-side-panel').length
|
||||
).toBe(1);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user