@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
14 lines (13 loc) • 453 B
JavaScript
/*!
* KoliBri - The accessible HTML-Standard
*/
import { h } from "@stencil/core";
import { renderFunctionalComponentToSpecPage } from "../../../utils/testing";
import KolAlertFc from "./..";
describe('KolAlertFc', () => {
it('should render', async () => {
const page = await renderFunctionalComponentToSpecPage(() => h(KolAlertFc, null));
expect(page.root).toMatchSnapshot();
});
});
//# sourceMappingURL=snapshot.test.js.map