File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3333 window . assetMap = {
3434 loader : "{{rootURL}}assets/loader.js" ,
3535 twiddleDeps : "{{rootURL}}assets/twiddle-deps.js" ,
36- testem : "{{rootURL}}testem.js" ,
3736 testSupport : "{{rootURL}}assets/test-support.js" ,
3837 testSupportCss : "{{rootURL}}assets/test-support.css" ,
3938 testLoader : "{{rootURL}}assets/test-loader.js" ,
Original file line number Diff line number Diff line change @@ -362,14 +362,12 @@ export default Ember.Service.extend({
362362 depScriptTags += `<script type="text/javascript" src="${ window . assetMap . twiddleDeps } "></script>` ;
363363
364364 if ( isTestingEnabled ) {
365- const testJSFiles = [ 'testLoader' , 'testem ' ] ;
365+ const testJSFiles = [ 'testLoader' , 'testSupport ' ] ;
366366
367367 testJSFiles . forEach ( jsFile => {
368368 depScriptTags += `<script type="text/javascript" src="${ window . assetMap [ jsFile ] } "></script>` ;
369369 } ) ;
370370
371- depScriptTags += `<script type="text/javascript" src="${ window . assetMap . testSupport } "></script>` ;
372-
373371 depCssLinkTags += `<link rel="stylesheet" type="text/css" href="${ window . assetMap . testSupportCss } ">` ;
374372
375373 testStuff += `
You can’t perform that action at this time.
0 commit comments