import * as React from 'react'
import renderWithTheme from '../../tests/helpers/renderWithTheme'
import Footer from './Footer'
const REPAY_LOGO =
'https://repay-merchant-resources.s3.amazonaws.com/staging/24bd1970-a677-4ca7-a4d2-e328ddd4691b/repay_logo_new.jpg'
const Logo = () =>
describe('component: Footer', () => {
test('should be able to pass custom content using children', () => {
const { getByText } = renderWithTheme()
expect(getByText('Custom Content')).toBeInTheDocument()
})
test('should be able to pass a logo using a component', () => {
const { getByTestId } = renderWithTheme(}>Custom Content)
expect(getByTestId('image')).toBeInTheDocument()
})
})