Skip to content

Commit 1de002e

Browse files
authored
Merge pull request #7 from alexlafroscia/u/alexlafroscia/automatically-install-testdouble
Install `testdouble` automatically
2 parents b7d5cfb + 65a5ecd commit 1de002e

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/* eslint-env node */
2+
3+
'use strict';
4+
5+
module.exports = {
6+
normalizeEntityName: function() {
7+
// this prevents an error when the entityName is
8+
// not specified (since that doesn't actually matter
9+
// to us
10+
},
11+
12+
afterInstall: function() {
13+
return this.addPackageToProject('testdouble', '^2.0.0');
14+
}
15+
};

0 commit comments

Comments
 (0)