Skip to content
Snippets Groups Projects
Select Git revision
  • 80d4aa81374c8a0999e88af1fc3d3878ccfc691b
  • main default protected
  • export
  • 28-conversion-tests
  • extraction
  • exploration
  • exploration-old
  • 2-encoding-fix
  • main-old
9 results

extract_page.py

Blame
  • WindowSideBar.test.js 456 B
    import React from 'react';
    import { shallow } from 'enzyme';
    import WindowSideBar from '../../../src/components/WindowSideBar';
    
    describe('WindowSideBar', () => {
      let wrapper;
      beforeEach(() => {
        wrapper = shallow(<WindowSideBar windowId="1" classes={{}} />).dive();
      });
    
      it('renders without an error', () => {
        expect(wrapper.find('WithStyles(Drawer)').length).toBe(2);
        expect(wrapper.find('WithStyles(List)').length).toBe(1);
      });
    });