pull/1530/head
Piero Toffanin 2024-07-29 17:37:40 -04:00
rodzic 7da52c4d64
commit 7617110943
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -1,10 +1,10 @@
import React from 'react';
import { shallow } from 'enzyme';
import { mount } from 'enzyme';
import MapPreview from '../MapPreview';
describe('<MapPreview />', () => {
it('renders without exploding', () => {
const wrapper = shallow(<MapPreview getFiles={() => []} />);
const wrapper = mount(<MapPreview getFiles={() => []} />);
expect(wrapper.exists()).toBe(true);
})
});