import React from 'react';
import { shallow } from 'enzyme';
import EditTaskPanel from '../EditTaskPanel';
const taskMock = require('../../tests/utils/MockLoader').load("task.json");
describe('', () => {
it('renders without exploding', () => {
const wrapper = shallow( {}}
onCancel={() => {}}
/>);
expect(wrapper.exists()).toBe(true);
})
});