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