Skip to content

Commit 75b0921

Browse files
committed
Added vows task to Gruntfile.js
1 parent d31b8bf commit 75b0921

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Gruntfile.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,23 @@
22

33
module.exports = function (grunt) {
44
grunt.loadNpmTasks('grunt-jslint');
5+
grunt.loadNpmTasks("grunt-vows");
56
grunt.loadTasks('./tasks');
67

78
// Project configuration.
89
grunt.initConfig({
910

11+
vows: {
12+
src: [
13+
'test/*.js'
14+
]
15+
},
16+
1017
jslint: {
1118
files: [
1219
'lib/**/*.js',
1320
'test/**/*.js',
14-
'grunt.js'
21+
'Gruntfile.js'
1522
],
1623
directives: {
1724
node: true,

0 commit comments

Comments
 (0)