Browse Source

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

Lucas Fernandes Nogueira 9 tháng trước cách đây
mục cha
commit
6a768cb679
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      packages/cli/__tests__/template.spec.ts

+ 2 - 1
packages/cli/__tests__/template.spec.ts

@@ -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)
   })
 })