Files
agent/bower_components/Split.js/Gruntfile.js

16 lines
318 B
JavaScript

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