mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
import React from 'react'
|
|
// import { render } from 'react-testing-library'
|
|
import testRender from '../../../jest/testRender'
|
|
|
|
import Input from './Input'
|
|
|
|
describe('Input', () => {
|
|
testRender(<Input />)
|
|
})
|