mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 07:45:18 +00:00
fix(cli): nocobase test command --db-clean option is invalid
This commit is contained in:
parent
80a685f8bf
commit
e031e2e6c1
@ -14,7 +14,15 @@ module.exports = (cli) => {
|
||||
nodeCheck();
|
||||
if (options.dbClean) {
|
||||
promptForTs();
|
||||
await runAppCommand('db:clean', '-y');
|
||||
await runAppCommand('db:clean', ['-y']);
|
||||
}
|
||||
let index = process.argv.indexOf('-c');
|
||||
if (index > 0) {
|
||||
process.argv.splice(index, 1);
|
||||
}
|
||||
index = process.argv.indexOf('--db-clean');
|
||||
if (index > 0) {
|
||||
process.argv.splice(index, 1);
|
||||
}
|
||||
process.argv.splice(2, 1, '-i');
|
||||
require('jest-cli/bin/jest');
|
||||
|
Loading…
Reference in New Issue
Block a user