Missed what seemed to be a critical update to the testem.js file 3.3

This commit is contained in:
Westly Wright 2018-08-16 15:06:54 -07:00
parent 993c975a2c
commit 1b2a622473
No known key found for this signature in database
GPG Key ID: 4FAB3D8673DC54A3
3 changed files with 7 additions and 3 deletions

View File

@ -134,6 +134,7 @@ module.exports = function(environment) {
ENV.APP.LOG_VIEW_LOOKUPS = false;
ENV.APP.rootElement = '#ember-testing';
ENV.APP.autoboot = false;
}
if (process.env.FINGERPRINT) {

View File

@ -10,13 +10,15 @@ module.exports = {
],
browser_args: {
Chrome: {
mode: 'ci',
args: [
ci: [
// --no-sandbox is needed when running Chrome inside a container
process.env.TRAVIS ? '--no-sandbox' : null,
'--disable-gpu',
'--headless',
'--no-sandbox',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=9222',
'--window-size=1440,900'
].filter(Boolean)

View File

@ -11,6 +11,7 @@
{{content-for "test-head"}}
<link id = "vendor" rel="stylesheet" href="{{content-for 'baseAssets'}}assets/vendor.css">
<link id = "vendor" rel="stylesheet" href="{{content-for 'baseAssets'}}assets/ui.css">
<link id="theme" rel="stylesheet">
<link rel="stylesheet" href="{{content-for 'baseAssets'}}assets/test-support.css">
@ -21,7 +22,7 @@
{{content-for "body"}}
{{content-for "test-body"}}
<script src="{{content-for 'baseAssets'}}testem.js" integrity=""></script>
<script src="/testem.js" integrity=""></script>
<script src="{{content-for 'baseAssets'}}assets/vendor.js"></script>
<script src="{{content-for 'baseAssets'}}assets/test-support.js"></script>
<script src="{{content-for 'baseAssets'}}assets/ui.js"></script>