mirror of
https://github.com/SomboChea/ui
synced 2024-11-11 00:54:26 +07:00
111f0c50e5
* chore: updated emotion dependency * feat: introduced theme * refactor: updated emotion styles * fix: fixed emotion error * fix: fixed tests * chore: add missing types Co-Authored-By: Thomas Klein <tmkn@users.noreply.github.com>
13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
import React from 'react';
|
|
|
|
import { render } from '../../utils/test-react-testing-library';
|
|
|
|
import Help from './Help';
|
|
|
|
describe('<Help /> component', () => {
|
|
test('should load the component in default state', () => {
|
|
const { container } = render(<Help />);
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
});
|
|
});
|