UNPKG

@dbp-topics/formalize

Version:

[GitLab Repository](https://gitlab.tugraz.at/dbp/formalize/formalize) | [npmjs package](https://www.npmjs.com/package/@dbp-topics/formalize) | [Unpkg CDN](https://unpkg.com/browse/@dbp-topics/formalize/) | [Formalize Bundle](https://gitlab.tugraz.at/dbp/f

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); }); });