dappros/ethora

View on GitHub
client-reactnative/__tests__/MainHeader/HeaderAppLogo-test.tsx

Summary

Maintainability
A
1 hr
Test Coverage
import React from 'react';
import renderer from 'react-test-renderer';
import {HeaderAppLogo} from '../../src/components/MainHeader/HeaderAppLogo';

test("renders correctly", ()=>{
 
   const tree = renderer.create(<HeaderAppLogo/>).toJSON();
   expect(tree).toMatchSnapshot();
 
})