phpunit grunt task

This commit is contained in:
Pierre Rudloff 2015-08-29 22:03:10 +02:00
parent a208b4a1dc
commit 334fa364c3
2 changed files with 12 additions and 1 deletions

View file

@ -31,12 +31,20 @@ module.exports = function (grunt) {
php: { php: {
src: ['*.php'] src: ['*.php']
}, },
tests: {
src: ['tests/*.php']
},
js: { js: {
src: ['js/*.js'] src: ['js/*.js']
}, },
Gruntfile: { Gruntfile: {
src: ['Gruntfile.js'] src: ['Gruntfile.js']
} }
},
phpunit: {
classes: {
dir: 'tests/'
}
} }
} }
); );
@ -45,7 +53,9 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-cssmin'); grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-watch'); grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-phpcs'); grunt.loadNpmTasks('grunt-phpcs');
grunt.loadNpmTasks('grunt-phpunit');
grunt.registerTask('default', ['uglify', 'cssmin']); grunt.registerTask('default', ['uglify', 'cssmin']);
grunt.registerTask('lint', ['phpcs']); grunt.registerTask('lint', ['phpcs']);
grunt.registerTask('test', ['phpunit']);
}; };

View file

@ -7,7 +7,8 @@
"grunt-contrib-cssmin": "~0.10.0", "grunt-contrib-cssmin": "~0.10.0",
"grunt-contrib-uglify": "~0.6.0", "grunt-contrib-uglify": "~0.6.0",
"grunt-contrib-watch": "~0.6.1", "grunt-contrib-watch": "~0.6.1",
"grunt-phpcs": "~0.4.0" "grunt-phpcs": "~0.4.0",
"grunt-phpunit": "~0.3.6"
}, },
"engines": { "engines": {
"node": "~0.10.29" "node": "~0.10.29"