Skip to content
Snippets Groups Projects
Commit ffc9387d authored by Tögl, Christina's avatar Tögl, Christina
Browse files

Move component to common

parent 94b8a6aa
No related branches found
No related tags found
1 merge request!11Add new component for inline notifications
Pipeline #14265 passed
This commit is part of merge request !11. Comments created here will be created in the context of that merge request.
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');
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment