1
0
mirror of https://github.com/kremalicious/ipfs.git synced 2024-11-24 02:42:05 +01:00
ipfs/test/Typekit.test.tsx

10 lines
230 B
TypeScript
Raw Permalink 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 />)
})
})