import { render } from '@testing-library/react' import { describe, expect, test } from 'vitest' import { DestinationIcon } from './DestinationIcon' import type { DestinationType } from './DestinationPanel/DestinationPanel.types' const DESTINATION_TYPES: DestinationType[] = [ 'BigQuery', 'Analytics Bucket', 'DuckLake', 'Snowflake', 'ClickHouse', ] describe('DestinationIcon', () => { test.each(DESTINATION_TYPES)('renders %s at the canonical stroke width', (type) => { const { container } = render() expect(container.querySelector('svg')).toHaveAttribute('stroke-width', '1.5') }) })