Skip to content
This repository has been archived by the owner on Oct 15, 2019. It is now read-only.

Commit

Permalink
Bugfix the test dir name in the Grunt watch config
Browse files Browse the repository at this point in the history
  • Loading branch information
phawk committed Sep 28, 2013
1 parent 974e1e8 commit 68a04b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Expand Up @@ -16,7 +16,7 @@ module.exports = function(grunt) {
*/
watch: {
scripts: {
files: ['src/**/!(templates).js', 'src/**/*.html', 'tests/**/*.js'],
files: ['src/**/!(templates).js', 'src/**/*.html', 'test/**/*.js'],
tasks: ['build'],
options: {
interrupt: true
Expand Down Expand Up @@ -123,7 +123,7 @@ module.exports = function(grunt) {
}
}
},

/**
* Stylesheets
* ===========
Expand Down Expand Up @@ -171,4 +171,4 @@ module.exports = function(grunt) {
grunt.registerTask('build', ['test', 'requirejs', 'styles', 'version-assets']);
grunt.registerTask('default', 'build');

};
};

0 comments on commit 68a04b2

Please sign in to comment.