Testing components
describe('Home component', () => {
it('should render', () => {
})
})import { html, render, Component} from 'vistajs/dom';
describe('Home component', () => {
it('should render', () => {
const hello = Component(`app-home`, () => {
return () => html`Hello World`;
});
render(document.body, hello)
})
})Last updated