-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(test blueprints): Prevent unwanted ember service and route test g…
…eneration The ember-cli generates blueprints for when generating a new service & route By overriding in it prevents the ember service & route test generation Fixes #202
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
var stringUtils = require('ember-cli/lib/utilities/string'); | ||
|
||
module.exports = { | ||
description: '', | ||
|
||
// ****************************************************** | ||
// ****************************************************** | ||
// LEAVE THIS HERE | ||
// Must override install to prevent ember's route tests | ||
// ****************************************************** | ||
// ****************************************************** | ||
|
||
install: function(options){} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
var stringUtils = require('ember-cli/lib/utilities/string'); | ||
|
||
module.exports = { | ||
description: '', | ||
|
||
// ****************************************************** | ||
// ****************************************************** | ||
// LEAVE THIS HERE | ||
// Must override install to prevent ember's service tests | ||
// ****************************************************** | ||
// ****************************************************** | ||
|
||
install: function(options){} | ||
}; |