import React from 'react';
import { shallow } from 'enzyme';
import AssetDownloadButtons from '../AssetDownloadButtons';
describe('', () => {
it('renders without exploding', () => {
const wrapper = shallow();
expect(wrapper.exists()).toBe(true);
})
});