diff --git a/styles/basics/__snapshots__/utils.test.tsx.snap b/styles/basics/__snapshots__/utils.test.tsx.snap new file mode 100644 index 00000000..9bbbf4bf --- /dev/null +++ b/styles/basics/__snapshots__/utils.test.tsx.snap @@ -0,0 +1,3 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`StyledBasicUtils should be matched snapshot 1`] = `null`; diff --git a/styles/basics/utils.test.tsx b/styles/basics/utils.test.tsx new file mode 100644 index 00000000..6de6a0c3 --- /dev/null +++ b/styles/basics/utils.test.tsx @@ -0,0 +1,11 @@ +import { StyledBasicUtils } from './utils' +import 'jest-styled-components' +import renderer from 'react-test-renderer' +import { renderWithTheme } from '@/tests/helpers' + +describe('StyledBasicUtils', () => { + it('should be matched snapshot', () => { + const actual = renderWithTheme().toJSON() + expect(actual).toMatchSnapshot() + }) +})