Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit ed7b69f

Browse files
committed
chore(gruntFile): add test Task and make default a synonym of it
1 parent 4023aba commit ed7b69f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gruntFile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ module.exports = function(grunt) {
77
require('load-grunt-tasks')(grunt);
88

99
// Default task.
10-
grunt.registerTask('default', ['jshint', 'karma:unit']);
10+
grunt.registerTask('default', ['test']);
11+
grunt.registerTask('test', ['jshint', 'karma:unit']);
1112
grunt.registerTask('serve', ['karma:continuous', 'dist', 'build:gh-pages', 'connect:continuous', 'watch']);
1213
grunt.registerTask('dist', ['ngmin', 'surround', 'uglify' ]);
1314
grunt.registerTask('coverage', ['jshint', 'karma:coverage']);

0 commit comments

Comments
 (0)