We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95a7873 commit 8c6a5f2Copy full SHA for 8c6a5f2
gruntFile.js
@@ -5,6 +5,11 @@ module.exports = function (grunt) {
5
// Default task.
6
grunt.registerTask('default', ['karma']);
7
8
+ var karmaConfig = function(configFile, customOptions) {
9
+ var options = { configFile: configFile, keepalive: true };
10
+ return grunt.util._.extend(options, customOptions);
11
+ };
12
+
13
// Project configuration.
14
grunt.initConfig({
15
karma: {
0 commit comments