@athenna/core
Advanced tools
Comparing version 4.6.0 to 4.7.0
{ | ||
"name": "@athenna/core", | ||
"version": "4.6.0", | ||
"version": "4.7.0", | ||
"description": "The plug and play Node.js framework.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -25,3 +25,9 @@ /** | ||
static commander(commander) { | ||
return commander.allowUnknownOption(); | ||
return commander | ||
.allowUnknownOption() | ||
.option('--tests', 'Specify test titles: --tests="shouldBeOk,shouldNotBeOk"') | ||
.option('--groups', 'Specify group titles: --groups="AppControllerTest,AppServiceTest"') | ||
.option('--files', 'Specify files to match and run: --files="AppControllerTest.ts,AppServiceTest.ts"') | ||
.option('--force-exit', 'Enable/disable force exit') | ||
.option('--timeout', 'Define timeout for all tests: --timeout 3000'); | ||
} | ||
@@ -28,0 +34,0 @@ // TODO Verify if this command still makes sense to exist. |
97592
2446