ipfs/test/Typekit.test.tsx

10 lines
230 B
TypeScript

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 />)
})
})