Skip to content

Commit

Permalink
Implementing workaround for potential ember-try bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wesley Workman committed Mar 25, 2016
1 parent 237ea9a commit 2d180a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions config/ember-try.js
Expand Up @@ -10,6 +10,7 @@ module.exports = {

{
name: 'ember and ember-data 2.3',
command: 'npm run install-and-ember-test',
bower: {
devDependencies: {
'ember': '2.3.1'
Expand All @@ -30,6 +31,7 @@ module.exports = {

{
name: 'ember and ember-data release',
command: 'npm run install-and-ember-test',
bower: {
devDependencies: {
'ember': 'components/ember#release'
Expand All @@ -50,6 +52,7 @@ module.exports = {

{
name: 'ember and ember-data beta',
command: 'npm run install-and-ember-test',
allowedToFail: true,
bower: {
devDependencies: {
Expand All @@ -71,6 +74,7 @@ module.exports = {

{
name: 'ember and ember-data canary',
command: 'npm run install-and-ember-test',
allowedToFail: true,
bower: {
devDependencies: {
Expand Down
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -15,7 +15,8 @@
"scripts": {
"build": "ember build",
"start": "ember server",
"test": "ember try:each"
"test": "ember try:each",
"install-and-ember-test": "npm install && ember test"
},
"keywords": [
"ember-addon",
Expand Down

0 comments on commit 2d180a9

Please sign in to comment.