ipfs/test/Typekit.test.tsx

10 lines
230 B
TypeScript
Raw Normal View History

2021-09-13 23:55:29 +02:00
import React from 'react'
import { render } from '@testing-library/react'
import Typekit from '../src/components/Typekit'
describe('Typekit', () => {
it('renders without crashing', async () => {
render(<Typekit />)
})
})