From 265859f79d1eff36b47375caeabaf19f3ab2a840 Mon Sep 17 00:00:00 2001 From: Michael Krotscheck Date: Tue, 12 Apr 2016 05:00:48 -0700 Subject: [PATCH] Removed ineffective grunt target The grunt test target invokes karma:integration, which doesn't actually exist, and would therefore always fail. That's a pretty good indication that this command is not in use. Change-Id: Ia0e69fbe0c42c32a2507638ecdc98cd08ed4674e --- Gruntfile.js | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 2e078bf1..4cc9855b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -701,22 +701,4 @@ module.exports = function (grunt) { 'connect:test', 'protractor' ]); - - /** - * grunt test - * - * Run all the tests. - */ - grunt.registerTask('test', [ - 'clean', - 'bower:install', - 'compile', - 'useminPrepare', - 'concat', - 'karma:unit', - 'karma:integration', - 'package', - 'connect:test', - 'protractor' - ]); };