All files / addon-test-support setup-modal.js

100% Statements 7/7
0% Branches 0/1
100% Functions 3/3
100% Lines 7/7

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14  1x 12x 12x 12x   12x     1x 12x      
export default function setupModal(hooks = self) {
  hooks.beforeEach(function() {
    this.rootEl = document.querySelector(this.owner.rootElement);
    this.modalDivEl = document.createElement('div');
    this.modalDivEl.id = 'nucleus-modal-wormhole';
 
    this.rootEl.appendChild(this.modalDivEl);
  });
 
  hooks.afterEach(function() {
    this.rootEl.removeChild(this.modalDivEl);
  });
}