fix(cli): verbose output on tests (#11328)

This commit is contained in:
Lucas Fernandes Nogueira 2024-10-12 10:58:42 -03:00 committed by GitHub
parent e55bd4ba7a
commit 6a768cb679
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,6 +44,7 @@ describe('[CLI] @tauri-apps/cli template', () => {
await cli.run([
'init',
'-vvv',
'--directory',
process.cwd(),
'--force',
@ -70,7 +71,7 @@ describe('[CLI] @tauri-apps/cli template', () => {
const config = readFileSync(configPath).toString()
writeFileSync(configPath, config.replace('com.tauri.dev', 'com.tauri.test'))
await cli.run(['build', '--verbose'])
await cli.run(['build'])
process.chdir(cwd)
})
})