mirror of
https://github.com/kremalicious/blog.git
synced 2024-12-23 01:30:01 +01:00
typing fixes
This commit is contained in:
parent
9d801636bb
commit
ffc0e1b1b3
@ -1,6 +1,11 @@
|
|||||||
import React, { ReactElement } from 'react'
|
import React, { ReactElement } from 'react'
|
||||||
import { input } from './Input.module.css'
|
import { input } from './Input.module.css'
|
||||||
|
|
||||||
export default function Input({ className, ...props }: any): ReactElement {
|
export default function Input({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: {
|
||||||
|
className: string
|
||||||
|
}): ReactElement {
|
||||||
return <input className={`${input} ${className || ''}`} {...props} />
|
return <input className={`${input} ${className || ''}`} {...props} />
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ import Conversion from './Conversion'
|
|||||||
|
|
||||||
describe('Conversion', () => {
|
describe('Conversion', () => {
|
||||||
it('renders without crashing', async () => {
|
it('renders without crashing', async () => {
|
||||||
const { findByText } = render(<Conversion amount={1} />)
|
render(<Conversion amount="1" />)
|
||||||
// const lazyElement = await findByText(/= €/)
|
// const lazyElement = await findByText(/= €/)
|
||||||
// expect(lazyElement).toBeInTheDocument()
|
// expect(lazyElement).toBeInTheDocument()
|
||||||
})
|
})
|
||||||
|
@ -13,7 +13,7 @@ describe('InputGroup', () => {
|
|||||||
expect(container.firstChild).toBeInTheDocument()
|
expect(container.firstChild).toBeInTheDocument()
|
||||||
|
|
||||||
const input = container.querySelector('input')
|
const input = container.querySelector('input')
|
||||||
const button = container.querySelector('button')
|
// const button = container.querySelector('button')
|
||||||
fireEvent.change(input, { target: { value: '3' } })
|
fireEvent.change(input, { target: { value: '3' } })
|
||||||
// fireEvent.click(button)
|
// fireEvent.click(button)
|
||||||
// expect(sendTransaction).toHaveBeenCalled()
|
// expect(sendTransaction).toHaveBeenCalled()
|
||||||
|
Loading…
Reference in New Issue
Block a user