grunt-contrib-jasmine/tasks/jasmine.js
2012-11-01 22:03:09 -07:00

29 lines
504 B
JavaScript

/*
* grunt-contrib-jasmine
* http://gruntjs.com/
*
* Licensed under the MIT license.
*/
'use strict';
module.exports = function(grunt) {
var path = require('path');
grunt.registerTask('jasmine', 'Run jasmine specs headlessly through PhantomJS.', function() {
// Merge task-specific options with these defaults.
var options = grunt.util._.defaults(grunt.config('jasmine'), {
});
if (grunt.option('debug')) {
}
// Start server.
grunt.log.writeln('');
});
};