Skip to content

Commit 8c6a5f2

Browse files
committed
Fixed testing using grunt
1 parent 95a7873 commit 8c6a5f2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

gruntFile.js

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ module.exports = function (grunt) {
55
// Default task.
66
grunt.registerTask('default', ['karma']);
77

8+
var karmaConfig = function(configFile, customOptions) {
9+
var options = { configFile: configFile, keepalive: true };
10+
return grunt.util._.extend(options, customOptions);
11+
};
12+
813
// Project configuration.
914
grunt.initConfig({
1015
karma: {

0 commit comments

Comments
 (0)