Skip to content

Commit

Permalink
feat(gen): default to gulp, mocha
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
Awk34 committed May 13, 2016
1 parent e66d020 commit 4cc2da6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,13 +290,14 @@ export class Generator extends Base {
name: 'buildtool',
message: 'Would you like to use Gulp or Grunt?',
choices: ['Grunt', 'Gulp'],
default: 0,
default: 1,
filter: val => val.toLowerCase()
}, {
type: 'list',
name: 'testing',
message: 'What would you like to write tests with?',
choices: [ 'Jasmine', 'Mocha + Chai + Sinon'],
choices: ['Jasmine', 'Mocha + Chai + Sinon'],
default: 1,
filter: function(val) {
return {
'Jasmine': 'jasmine',
Expand Down

0 comments on commit 4cc2da6

Please sign in to comment.