diff options
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 2b5afa1..b184310 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -65,7 +65,14 @@ module.exports = function(grunt) { }, }, jasmine: { - files: ['test/**/*.html'] + src: 'src/<%= pkg.name %>.js', + options: { + specs: 'test/*_spec.js', + vendor: [ + 'http://code.jquery.com/jquery-1.10.1.min.js', + 'http://code.jquery.com/ui/1.10.3/jquery-ui.min.js' + ] + } }, jshint: { gruntfile: { |