Use material design for side panel drawer

Change-Id: I7c89f3022accd6cda524fded63fe84e42e2fab62
This commit is contained in:
Manuel Stahl
2019-03-12 14:29:48 +01:00
parent 0dc4375f60
commit 032b2e0015
8 changed files with 172 additions and 118 deletions
-19
View File
@@ -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);
});
});