summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/Gruntfile.js4
-rw-r--r--js/package.json2
2 files changed, 3 insertions, 3 deletions
diff --git a/js/Gruntfile.js b/js/Gruntfile.js
index 8d86bf34c..491a4922a 100644
--- a/js/Gruntfile.js
+++ b/js/Gruntfile.js
@@ -183,6 +183,6 @@ module.exports = function (grunt) {
grunt.registerTask('default', ['jslint', 'concat', 'ngmin', 'wrap']);
grunt.registerTask('test', ['karma:unit']);
grunt.registerTask('e2e', ['protractor_webdriver', 'connect', 'protractor:chrome']);
- grunt.registerTask('ci', ['default', 'karma:continuous', 'protractor_webdriver', 'connect', 'protractor:phantomjs']);
-
+ grunt.registerTask('ci-unit', ['default', 'karma:continuous']);
+ grunt.registerTask('ci-e2e', ['protractor_webdriver', 'connect', 'protractor:phantomjs']);
}; \ No newline at end of file
diff --git a/js/package.json b/js/package.json
index c11f0cb07..6a6cea1ac 100644
--- a/js/package.json
+++ b/js/package.json
@@ -4,7 +4,7 @@
"description": "An RSS/Atom feed reader",
"main": "build/app.js",
"scripts": {
- "test": "grunt ci"
+ "test": "grunt ci-unit"
},
"repository": {
"type": "git",