mirror of
https://github.com/kremalicious/ipfs.git
synced 2024-11-22 01:37:07 +01:00
10 lines
230 B
TypeScript
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 />)
|
|
})
|
|
})
|