2020-05-19 11:43:42 +03:00

16 lines
312 B
JavaScript

module.exports = function(grunt) {
grunt.initConfig({
jasmine: {
test: {
src: 'split.js',
options: {
specs: ['test/split.spec.js'],
},
},
},
})
grunt.loadNpmTasks('grunt-contrib-jasmine')
}