Skip to content

Commit

Permalink
Set up grunt and testacular so they can prepare and use tests written…
Browse files Browse the repository at this point in the history
… in coffeescript. Rewrote one test into coffeescript.
  • Loading branch information
danielfagerstrom committed Oct 6, 2012
1 parent 87eaf81 commit 3595b5b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ module.exports = function( grunt ) {
coffee: {
compile: {
files: {
'temp/scripts/*.js': 'app/scripts/**/*.coffee'
'temp/scripts/*.js': 'app/scripts/**/*.coffee',
'temp/*.js': 'test/**/*.coffee'
},
options: {
basePath: 'app/scripts'
Expand Down
3 changes: 2 additions & 1 deletion testacular.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ files = [
'temp/scripts/*.js',
'temp/scripts/**/*.js',
'test/mock/**/*.js',
'test/spec/**/*.js'
'test/spec/**/*.js',
'temp/test/**/*.js'
];


Expand Down

0 comments on commit 3595b5b

Please sign in to comment.