Skip to content

Instantly share code, notes, and snippets.

Created August 14, 2017 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/cc347d484571bfeac246c1ead439187f to your computer and use it in GitHub Desktop.
Save anonymous/cc347d484571bfeac246c1ead439187f to your computer and use it in GitHub Desktop.
module.exports = function(grunt) {
grunt.initConfig({
jasmine_node: {
options: {
forceExit: true,
match: '.',
matchall: false,
extensions: 'js',
specNameMatcher: 'spec',
jUnit: {
report: true,
savePath : "./build/reports/jasmine/",
useDotNotation: true,
consolidate: true
}
},
all: ['/home/thamiris/workspace/mydenoxweb/test/']
}
});
grunt.loadNpmTasks('grunt-jasmine-node');
grunt.registerTask('default', ['jasmine_node']);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment