29 lines
560 B
JavaScript
29 lines
560 B
JavaScript
/**
|
|
* jasmine
|
|
* =======
|
|
*
|
|
* Test settings
|
|
*
|
|
* Link: https://github.com/gruntjs/grunt-contrib-jasmine
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = function (grunt) {
|
|
return {
|
|
dist: {
|
|
src: [
|
|
'bower_components/chartist/dist/chartist.js',
|
|
'<%= pkg.config.src %>/scripts/<%= pkg.config.src_name %>.js'
|
|
],
|
|
options: {
|
|
specs: '<%= pkg.config.test %>/spec/**/spec-*.js',
|
|
helpers: '<%= pkg.config.test %>/spec/**/helper-*.js',
|
|
phantomjs: {
|
|
'ignore-ssl-errors': true
|
|
}
|
|
}
|
|
}
|
|
};
|
|
};
|