Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 1b16c26

Browse files
nathasmjuliemr
authored andcommitted
feat(suites): allow more than one suite from the command line
Allow a comma-separated list of suites be provided on the command line, like `--suite=suite1,suite2`
1 parent caf5f32 commit 1b16c26

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

docs/referenceConf.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,9 @@ exports.config = {
6666
exclude: [],
6767

6868
// Alternatively, suites may be used. When run without a command line
69-
// parameter, all suites will run. If run with --suite=smoke, only the
70-
// patterns matched by that suite will run.
69+
// parameter, all suites will run. If run with --suite=smoke or
70+
// --suite=smoke,full only the patterns matched by the specified suites will
71+
// run.
7172
suites: {
7273
smoke: 'spec/smoketests/*.js',
7374
full: 'spec/*.js'
@@ -88,9 +89,9 @@ exports.config = {
8889
capabilities: {
8990
browserName: 'chrome',
9091

91-
// Number of times to run this set of capabilities (in parallel, unless
92+
// Number of times to run this set of capabilities (in parallel, unless
9293
// limited by maxSessions). Default is 1.
93-
count: 1,
94+
count: 1,
9495

9596
// If this is set to be true, specs will be sharded by file (i.e. all
9697
// files to be run by this set of capabilities will run in parallel).
@@ -183,7 +184,7 @@ exports.config = {
183184
// Mocha and Cucumber have limited beta support. You will need to include your
184185
// own assertion framework (such as Chai) if working with Mocha.
185186
framework: 'jasmine',
186-
187+
187188
// Options to be passed to minijasminenode.
188189
//
189190
// See the full list at https://github.com/juliemr/minijasminenode/tree/jasmine1

lib/configParser.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,18 @@ ConfigParser.resolveFilePatterns =
113113
* @return {Array} An array of globs locating the spec files
114114
*/
115115
ConfigParser.getSpecs = function(config) {
116+
var specs = [];
116117
if (config.suite) {
117-
return config.suites[config.suite];
118+
_.forEach(config.suite.split(','), function(suite) {
119+
specs = _.union(specs, makeArray(config.suites[suite]));
120+
});
121+
return specs;
118122
}
119123

120124
if (config.specs.length > 0) {
121125
return config.specs;
122126
}
123127

124-
var specs = [];
125128
_.forEach(config.suites, function(suite) {
126129
specs = _.union(specs, makeArray(suite));
127130
});

scripts/test.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ var scripts = [
1313
'node lib/cli.js spec/cucumberConf.js',
1414
'node lib/cli.js spec/withLoginConf.js',
1515
'node lib/cli.js spec/suitesConf.js --suite okmany',
16-
'node lib/cli.js spec/suitesConf.js --suite okspec'
16+
'node lib/cli.js spec/suitesConf.js --suite okspec',
17+
'node lib/cli.js spec/suitesConf.js --suite okmany,okspec'
1718
];
1819

1920
scripts.push(

0 commit comments

Comments
 (0)