Vizir/react-native-simple-login

View on GitHub
Login/Structure/Logo/Logo.spec.js

Summary

Maintainability
A
0 mins
Test Coverage
/* global describe, it, expect */

import React from 'react'
import { shallow } from 'enzyme'
import { Logo } from '../'

describe('Logo', () => {
  it('can render correctly', () => {
    expect(shallow(
      <Logo logoImage='fakeImage' />
    )).toMatchSnapshot()
  })
})