UNPKG

442 BJavaScriptView Raw
1import React from 'react'
2import { css } from 'styled-components'
3import 'jest-styled-components'
4
5import { CustomerQuotes } from 'SRC'
6
7const { shallowWithTheme } = global
8
9describe('(Styled Component) CustomerQuotes', () => {
10 const createCustomerQuotes = (props) => {
11 return shallowWithTheme(<CustomerQuotes {...props} />)
12 }
13
14 test('matching the snapshot', () => {
15 expect(createCustomerQuotes())
16 .toMatchSnapshot()
17 })
18})
19
\No newline at end of file