Switch the generation of everything so we generate tests and they can actually pass.

This commit is contained in:
Justin Niessner
2015-03-26 23:09:45 -04:00
parent 3cf4d739e3
commit 53b262ae3c
11 changed files with 70 additions and 26 deletions
+2 -2
View File
@@ -3,7 +3,6 @@ var util = require('util');
var ScriptBase = require('../script-base.js');
var ComponentGenerator = module.exports = function ComponentGenerator(args, options, config) {
ScriptBase.apply(this, arguments);
};
@@ -18,6 +17,7 @@ ComponentGenerator.prototype.createComponentFile = function createComponentFile(
'Component',
'spec/Component',
'styles/Component',
'components'
'components',
true
);
};