import { Component, component } from '../../src/fudgel.js'; component('test-element', { template: '
{{child.nodeName}}', }); describe('ref', () => { beforeEach(() => { cy.mount(''); }); it('creates a reference', () => { cy.get('#name').should('have.text', 'DIV'); }); });