Skip to content

Commit

Permalink
0.0.42
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelly Selden committed Jan 25, 2015
1 parent 91409a1 commit e716909
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
@@ -0,0 +1,3 @@
{
"directory": "bower_components"
}
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -26,7 +26,7 @@
"body-parser": "^1.2.0",
"broccoli-asset-rev": "0.0.17",
"broccoli-ember-hbs-template-compiler": "^1.6.1",
"ember-cli": "0.0.41",
"ember-cli": "0.0.42",
"ember-cli-ember-data": "0.1.0",
"ember-cli-ic-ajax": "0.1.1",
"ember-cli-qunit": "0.0.5",
Expand Down
6 changes: 2 additions & 4 deletions tests/dummy/app/index.html
Expand Up @@ -13,13 +13,11 @@
<link rel="stylesheet" href="assets/dummy.css">
</head>
<body>
<script>
window.DummyENV = {{ENV}};
window.EmberENV = window.DummyENV.EmberENV;
</script>
<script src="assets/vendor.js"></script>
<script src="assets/dummy.js"></script>
<script>
window.DummyENV = require('dummy/config/environment')['default'];
window.EmberENV = window.DummyENV.EmberENV;
window.Dummy = require('dummy/app')['default'].create(DummyENV.APP);
</script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion tests/dummy/config/environment.js
Expand Up @@ -27,7 +27,7 @@ module.exports = function(environment) {
}

if (environment === 'test') {

ENV.baseURL = '/'; // Testem prefers this...
}

if (environment === 'production') {
Expand Down
7 changes: 3 additions & 4 deletions tests/index.html
Expand Up @@ -33,15 +33,14 @@
<div id="qunit"></div>
<div id="qunit-fixture"></div>

<script>
window.DummyENV = {{ENV}};
window.EmberENV = window.DummyENV.EmberENV;
</script>
<script src="assets/vendor.js"></script>
<script src="assets/test-support.js"></script>
<script src="assets/dummy.js"></script>
<script src="testem.js"></script>
<script>
window.DummyENV = require('dummy/config/environment')['default'];
window.EmberENV = window.DummyENV.EmberENV;

require('dummy/tests/test-helper');
</script>
<script src="assets/test-loader.js"></script>
Expand Down

0 comments on commit e716909

Please sign in to comment.