import React from 'react';
import {render} from '@testing-library/react-native';
import {Logo} from './Logo';
describe('Logo Component', () => {
it('should render Logo component', () => {
const {toJSON} = render();
expect(toJSON()).toBeTruthy();
});
it('should render Logo with width and height props', () => {
const {toJSON} = render();
expect(toJSON()).toBeTruthy();
});
it('should render Logo with string width and height', () => {
const {toJSON} = render();
expect(toJSON()).toBeTruthy();
});
});