Fix cmdline aliases specs

This commit is contained in:
Eli Barzilay 2020-01-02 16:28:44 -05:00
parent 4585f448a9
commit 8939b251b8

View File

@ -8,12 +8,12 @@ module.exports = minimist(process.argv.slice(2), {
string: ["browser", "tests", "inspect", "host", "reporter", "stackTraceLimit", "timeout", "shards", "shardId"],
alias: {
"b": "browser",
"d": "debug", "debug-brk": "debug",
"i": "inspect", "inspect-brk": "inspect",
"t": "tests", "test": "tests",
"ru": "runners", "runner": "runners",
"d": ["debug", "debug-brk"],
"i": ["inspect", "inspect-brk"],
"t": ["tests", "test"],
"ru": ["runners", "runner"],
"r": "reporter",
"c": "colors", "color": "colors",
"c": ["colors", "color"],
"skippercent": "skipPercent",
"w": "workers",
"f": "fix"