/* eslint-disable jest/require-top-level-describe */ import { render } from '@testing-library/react'; import React from 'react'; import { SIZES, COLORS } from '../../../helpers/constants/design-system'; import { Icon } from './icon'; // Icon names are stored in the ICON_NAMES environment variable // mocking the environment variable here const MOCK_ICON_NAMES = { ADD_SQUARE_FILLED: 'add-square-filled', BANK_FILLED: 'bank-filled', BOOKMARK_FILLED: 'bookmark-filled', CALCULATOR_FILLED: 'calculator-filled', }; describe('Icon', () => { it('should render correctly', () => { const { getByTestId, container } = render( , ); expect(getByTestId('icon')).toBeDefined(); expect(container.querySelector('svg')).toBeDefined(); }); it('should render with different icons using mask-image and image urls', () => { const { getByTestId } = render( <> , ); expect( window.getComputedStyle(getByTestId('icon-add-square-filled')).maskImage, ).toBe(`url('/images/icons/icon-add-square-filled.svg`); expect( window.getComputedStyle(getByTestId('icon-bank-filled')).maskImage, ).toBe(`url('/images/icons/icon-bank-filled.svg`); expect( window.getComputedStyle(getByTestId('icon-bookmark-filled')).maskImage, ).toBe(`url('/images/icons/icon-bookmark-filled.svg`); expect( window.getComputedStyle(getByTestId('icon-calculator-filled')).maskImage, ).toBe(`url('/images/icons/icon-calculator-filled.svg`); }); it('should render with different size classes', () => { const { getByTestId } = render( <> , ); expect(getByTestId('icon-xxs')).toHaveClass('icon--size-xxs'); expect(getByTestId('icon-xs')).toHaveClass('icon--size-xs'); expect(getByTestId('icon-sm')).toHaveClass('icon--size-sm'); expect(getByTestId('icon-md')).toHaveClass('icon--size-md'); expect(getByTestId('icon-lg')).toHaveClass('icon--size-lg'); expect(getByTestId('icon-xl')).toHaveClass('icon--size-xl'); }); it('should render with icon colors', () => { const { getByTestId } = render( <> , ); expect(getByTestId('icon-color-default')).toHaveClass( 'box--color-icon-default', ); expect(getByTestId('icon-color-alternative')).toHaveClass( 'box--color-icon-alternative', ); expect(getByTestId('icon-color-muted')).toHaveClass( 'box--color-icon-muted', ); }); });