aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/sun.test.tsx
blob: 2aa916b178289d01a2edc6b27291c776954242c1 (plain)
1
2
3
4
5
6
7
8
9
10
import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { Sun } from './sun';

describe('Sun', () => {
  it('renders a sun icon', () => {
    const { container } = render(<Sun />);
    expect(container).toBeDefined();
  });
});