UNPKG

@digital-blueprint/formalize-app

Version:

[GitHub Repository](https://github.com/digital-blueprint/formalize-app) | [npmjs package](https://www.npmjs.com/package/@digital-blueprint/formalize-app) | [Unpkg CDN](https://unpkg.com/browse/@digital-blueprint/formalize-app/) | [Formalize Bundle](https:

23 lines (17 loc) 515 B
import {assert} from 'chai'; import '../src/dbp-formalize-show-registrations'; import '../src/dbp-formalize.js'; suite('dbp-formalize-show-registrations basics', () => { let node; suiteSetup(async () => { node = document.createElement('dbp-formalize-show-registrations'); document.body.appendChild(node); await node.updateComplete; }); suiteTeardown(() => { node.remove(); }); test('should render', () => { assert(!!node.shadowRoot); }); });