Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Loader Component 100% Test Coverage and Fix Uncovered Lines #1047

22 changes: 15 additions & 7 deletions src/components/Loader/Loader.test.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import { BrowserRouter } from 'react-router-dom';

import Loader from './Loader';

describe('Testing Loader component', () => {
test('Component should be rendered properly', () => {
render(
<BrowserRouter>
<Loader />
</BrowserRouter>
);
render(<Loader />);

expect(screen.getByTestId('spinner-wrapper')).toBeInTheDocument();
expect(screen.getByTestId('spinner')).toBeInTheDocument();
});

test('Component should render on custom sizes', () => {
render(<Loader size="sm" />);

expect(screen.getByTestId('spinner-wrapper')).toBeInTheDocument();
expect(screen.getByTestId('spinner')).toBeInTheDocument();
});

test('Component should render with large size', () => {
render(<Loader size="lg" />);

expect(screen.getByTestId('spinner-wrapper')).toBeInTheDocument();
expect(screen.getByTestId('spinner')).toBeInTheDocument();
Expand Down
Loading