1
0
mirror of https://github.com/kremalicious/ipfs.git synced 2024-06-10 11:25:31 +02:00
ipfs/test/Files.test.tsx
2021-09-14 00:04:38 +02:00

26 lines
571 B
TypeScript

import React from 'react'
import { render, screen } from '@testing-library/react'
import Files from '../src/components/Add/Files'
import { CID } from 'multiformats/cid'
const files = [
{
path: 'hello',
cid: { toString: () => 'xxx' } as CID,
size: 1000
},
{
path: '',
cid: { toString: () => 'xxx' } as CID,
size: 1000
}
]
describe('Files', () => {
it('renders without crashing', async () => {
render(<Files files={files} />)
const element = await screen.findByText('ipfs://xxx/')
expect(element).toBeInTheDocument()
})
})