2013-05-26 22:02:48 +00:00
|
|
|
module.exports = function(grunt) {
|
|
|
|
grunt.initConfig({
|
|
|
|
jshint: {
|
|
|
|
/*options: {
|
|
|
|
jshintrc: '.jshintrc'
|
|
|
|
},*/
|
|
|
|
files: [
|
|
|
|
'Gruntfile.js',
|
2013-05-26 22:38:54 +00:00
|
|
|
'package.json'
|
|
|
|
//,'js/**/*.js',
|
|
|
|
//'<%= nodeunit.tests %>'
|
2013-05-26 22:02:48 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
connect: {
|
|
|
|
www: {
|
|
|
|
options: {
|
2013-05-26 22:29:40 +00:00
|
|
|
base: '.',
|
2013-05-26 22:02:48 +00:00
|
|
|
port: 4545
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ghost: {
|
2013-05-26 22:45:22 +00:00
|
|
|
dist: {
|
|
|
|
filesSrc: ['tests/integration/casperjs/*_test.js'],
|
|
|
|
options: {
|
|
|
|
args: {
|
|
|
|
baseUrl: 'http://localhost:' +
|
|
|
|
'<%= connect.www.options.port %>/'
|
|
|
|
},
|
|
|
|
direct: false,
|
|
|
|
logLevel: 'error',
|
|
|
|
printCommand: false,
|
|
|
|
printFilePaths: true
|
|
|
|
}
|
|
|
|
}
|
2013-05-26 22:02:48 +00:00
|
|
|
}
|
|
|
|
});
|
2013-05-26 21:58:59 +00:00
|
|
|
|
2013-05-26 22:02:48 +00:00
|
|
|
grunt.loadNpmTasks('grunt-contrib-connect');
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
|
|
grunt.loadNpmTasks('grunt-ghost');
|
2013-05-26 21:58:59 +00:00
|
|
|
|
2013-05-26 22:59:24 +00:00
|
|
|
grunt.registerTask('test', ['jshint', 'connect', 'ghost']);
|
2013-05-26 22:02:48 +00:00
|
|
|
|
|
|
|
};
|