Skip to content

Commit 65a5ecd

Browse files
committed
Install testdouble when the addon is installed
1 parent 66d3e6b commit 65a5ecd

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)