Skip to content

Commit 366d1ae

Browse files
committed
fix(service blueprint): Prevent unwanted ember service test generation
The ember-cli generates blueprints for when generating a new By overriding in it prevents the ember service test generation Fixes #202
1 parent ab42471 commit 366d1ae

File tree

1 file changed

+14
-0
lines changed
  • addon/ng2/blueprints/service-test

1 file changed

+14
-0
lines changed
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
var stringUtils = require('ember-cli/lib/utilities/string');
2+
3+
module.exports = {
4+
description: '',
5+
6+
// ******************************************************
7+
// ******************************************************
8+
// LEAVE THIS HERE
9+
// Must override install to prevent ember's service tests
10+
// ******************************************************
11+
// ******************************************************
12+
13+
install: function(options){}
14+
};

0 commit comments

Comments
 (0)