@navinc/base-react-components
Version:
Nav's Pattern Library
10 lines • 427 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { describe, expect, it } from 'vitest';
import { CDNIllustration } from './cdn-illustration.js';
import { renderWithContext } from './tests/with-app-context.js';
describe('<CDNIllustration />', () => {
it('renders', () => {
expect(() => renderWithContext(_jsx(CDNIllustration, {}))).not.toThrow();
});
});
//# sourceMappingURL=cdn-illustration.spec.js.map