grunt-parallel-spec-runner
Advanced tools
Comparing version 0.3.0 to 0.3.1
{ | ||
"name": "grunt-parallel-spec-runner", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "Plugin used to configure and launch multiple spec ", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/RallySoftware/grunt-parallel-spec-runner.git", |
@@ -18,3 +18,3 @@ # grunt-parallel-spec-runner | ||
grunt.initConfig | ||
webdriver_jasmine_runner: | ||
parallel_spec_runner: | ||
your_target: | ||
@@ -21,0 +21,0 @@ options: |
@@ -144,2 +144,3 @@ /* | ||
appendAdditionalOptions(opts.args); | ||
opts.args.push('--browser=' + options.browser); | ||
if(options.keepalive){ | ||
@@ -149,3 +150,2 @@ opts.args.push('--keepalive'); | ||
var s = grunt.util.spawn(opts, df); | ||
@@ -327,2 +327,3 @@ | ||
target: this.target, | ||
browser: 'chrome', | ||
debug: grunt.option('debug') || false, | ||
@@ -334,2 +335,7 @@ verbose: grunt.option('verbose') || false, | ||
}); | ||
if(grunt.option('browser') || grunt.task.current.args[0]){ | ||
options.browser = grunt.option('browser') || grunt.task.current.args[0]; | ||
} | ||
options.specs = grunt.file.expand({filter: 'isFile'}, options.specs); | ||
@@ -336,0 +342,0 @@ options.excludedSpecs = grunt.file.expand({filter: 'isFile'}, options.excludedSpecs); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
213129
419