11 lines
238 B
Handlebars
Raw Normal View History

2019-03-07 17:54:50 +01:00
import React from 'react';
import { shallow } from 'enzyme';
2017-01-17 13:40:59 +01:00
2019-03-07 17:54:50 +01:00
import {{ properCase name }} from '../index';
2017-01-17 13:40:59 +01:00
describe('<{{ properCase name }} />', () => {
2019-03-07 17:54:50 +01:00
it('should not crash', () => {
shallow(<{{ properCase name }} />);
2017-01-17 13:40:59 +01:00
});
});