add command line options --nochecks and --nocoverage
This commit is contained in:
@ -83,6 +83,15 @@ export let run = function (argvArg) {
|
||||
if (config.argv.notest) {
|
||||
config.test = false
|
||||
}
|
||||
|
||||
if (config.argv.nocoverage) {
|
||||
config.coverage = false
|
||||
}
|
||||
|
||||
if (config.argv.nochecks) {
|
||||
config.checkDependencies = false
|
||||
}
|
||||
|
||||
if (config.argv.watch) {
|
||||
config.watch = true
|
||||
}
|
||||
|
Reference in New Issue
Block a user