GT2/GT2-iOS/node_modules/stacktrace-parser/Gruntfile.js

21 lines
405 B
JavaScript

module.exports = function(grunt) {
var pkg = require('./package.json');
grunt.initConfig({
shell: { // grunt-shell-spawn
options: {
stdout: true,
stderr: true
},
mocha: {
command: './node_modules/.bin/mocha --reporter spec test/**/*.js',
}
}
});
grunt.loadNpmTasks('grunt-shell-spawn');
grunt.registerTask('test', ['shell:mocha']);
};