summaryrefslogtreecommitdiffstats
path: root/js/Gruntfile.js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-22 02:15:56 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-22 02:15:56 +0200
commit2b4da592f1c8a2210f9ba49a9e24eb2056e5d4a8 (patch)
treea75d63fcfbe307bd22bef14f8befaa9545c8f544 /js/Gruntfile.js
parentf0aae6875bc1da724d1960805f88b4b707742a44 (diff)
simplify star and read
Diffstat (limited to 'js/Gruntfile.js')
-rw-r--r--js/Gruntfile.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/Gruntfile.js b/js/Gruntfile.js
index b45385dc5..518627c9c 100644
--- a/js/Gruntfile.js
+++ b/js/Gruntfile.js
@@ -139,7 +139,7 @@ module.exports = function (grunt) {
},
phpunit: {
classes: {
- dir: '../tests'
+ dir: '../tests/unit'
},
options: {
colors: true
@@ -175,7 +175,7 @@ module.exports = function (grunt) {
grunt.registerTask('default', ['jshint', 'concat', 'wrap', 'traceur', 'ngmin']);
grunt.registerTask('dev', ['watch:concat']);
grunt.registerTask('test', ['karma:unit']);
- grunt.registerTask('phpunit', ['watch:phpunit']);
+ grunt.registerTask('php', ['watch:phpunit']);
grunt.registerTask('e2e', ['protractor_webdriver', 'connect', 'protractor:chrome']);
grunt.registerTask('ci-unit', ['default', 'karma:continuous']);
grunt.registerTask('ci-e2e', ['protractor_webdriver', 'connect', 'protractor:phantomjs']);