import { describe, it, expect } from 'vitest' import { render } from '@testing-library/react' import { RangeSkeleton } from './skeleton' describe('', () => { it('renders without crashing', () => { const { container } = render() expect( container.querySelectorAll('.MuiSkeleton-root').length, ).toBeGreaterThan(0) }) it('scales with count', () => { const { container } = render() expect(container.firstChild).not.toBeNull() }) })