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
This commit is contained in:
Michael Krotscheck 2016-04-12 05:00:48 -07:00
parent eda5fec690
commit 265859f79d
No known key found for this signature in database
GPG Key ID: 20E618D878DE38AB
1 changed files with 0 additions and 18 deletions

View File

@ -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'
]);
};