Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

__init__.py

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