Skip to content
Snippets Groups Projects
Select Git revision
  • c90cbd945c860e27672faa0ae410a56d974b1422
  • main default protected
  • renovate/lock-file-maintenance
  • demo protected
  • person-select-custom
  • dbp-translation-component
  • icon-set-mapping
  • port-i18next-parser
  • remove-sentry
  • favorites-and-recent-files
  • revert-6c632dc6
  • lit2
  • advertisement
  • wc-part
  • automagic
  • publish
  • wip-cleanup
  • demo-file-handling
18 results

rollup.config.js

Blame
  • unit.js 407 B
    import '../src/dbp-inline-notification';
    
    describe('dbp-inline-notification basics', () => {
      let node;
    
      beforeEach(async () => {
        node = document.createElement('dbp-inline-notification');
        document.body.appendChild(node);
        await node.updateComplete;
      });
    
      afterEach(() => {
        node.remove();
      });
    
      it('should render', () => {
          expect(node).to.have.property('shadowRoot');
      });
    });