houdini/lib/generators/react/component/templates/component.spec.tsx.erb
2018-05-22 13:33:35 -05:00

10 lines
No EOL
260 B
Text

// License: LGPL-3.0-or-later
import * as React from 'react';
import 'jest';
import <%= file_name.camelize %> from './<%= file_name.camelize%>'
describe('<%= file_name.camelize %>', () => {
test('your test here', () => {
expect(false).toBe(true)
})
})