1
0
mirror of https://github.com/kremalicious/ipfs.git synced 2024-11-22 01:37:07 +01:00
ipfs/test/Typekit.test.tsx
2021-09-14 00:04:38 +02:00

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