beforeEach(function() { var template = document.createElement('script'); template.setAttribute('type', 'text/html'); template.setAttribute('id', 'svg-container-base'); template.innerHTML = [ '
', '
' ].join(''); document.body.appendChild(template); }); afterEach(function() { document.body.removeChild(document.body.querySelector('#svg-container-base')); });