Skip to content

Instantly share code, notes, and snippets.

@peterssonjesper
Created August 15, 2013 18:22
Show Gist options
  • Save peterssonjesper/6243327 to your computer and use it in GitHub Desktop.
Save peterssonjesper/6243327 to your computer and use it in GitHub Desktop.
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: grunt.file.readJSON('package.json'),
// Task configuration.
jasmine: {
all: {
src: [
'public/javascripts/src/**/*.js',
],
options: {
'vendor': 'public/javascripts/libs/**/*.js',
'specs': 'public/javascripts/spec/**/*.js'
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-jasmine');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment