Skip to content

Commit

Permalink
fix(cli): verbose output on tests (#11328)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog authored Oct 12, 2024
1 parent e55bd4b commit 6a768cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/__tests__/template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ describe('[CLI] @tauri-apps/cli template', () => {

await cli.run([
'init',
'-vvv',
'--directory',
process.cwd(),
'--force',
Expand All @@ -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)
})
})
Expand Down

0 comments on commit 6a768cb

Please sign in to comment.