mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
13 lines
329 B
TypeScript
13 lines
329 B
TypeScript
import React from 'react';
|
|
import * as ReactDOM from 'react-dom';
|
|
|
|
import { Fonts } from '../stories/0-Text.stories';
|
|
|
|
describe('Text Stories', () => {
|
|
it('renders without crashing', () => {
|
|
const div = document.createElement('div');
|
|
ReactDOM.render(<Fonts />, div);
|
|
ReactDOM.unmountComponentAtNode(div);
|
|
});
|
|
});
|