Skip to content

Commit 6a768cb

Browse files
authored
fix(cli): verbose output on tests (#11328)
1 parent e55bd4b commit 6a768cb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/cli/__tests__/template.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ describe('[CLI] @tauri-apps/cli template', () => {
4444

4545
await cli.run([
4646
'init',
47+
'-vvv',
4748
'--directory',
4849
process.cwd(),
4950
'--force',
@@ -70,7 +71,7 @@ describe('[CLI] @tauri-apps/cli template', () => {
7071
const config = readFileSync(configPath).toString()
7172
writeFileSync(configPath, config.replace('com.tauri.dev', 'com.tauri.test'))
7273

73-
await cli.run(['build', '--verbose'])
74+
await cli.run(['build'])
7475
process.chdir(cwd)
7576
})
7677
})

0 commit comments

Comments
 (0)