fix(cli): test timeout (#11035)

This commit is contained in:
Lucas Fernandes Nogueira
2024-09-17 08:33:45 -03:00
committed by GitHub
parent 5ff0bbc547
commit 96c1ec3b89

View File

@@ -14,7 +14,7 @@ import cli from '../main.js'
import { describe, it } from 'vitest'
describe('[CLI] @tauri-apps/cli template', () => {
it('init a project and builds it', { timeout: 200000 }, async () => {
it('init a project and builds it', { timeout: 15 * 60 * 1000 }, async () => {
const cwd = process.cwd()
const fixturePath = resolve(__dirname, './fixtures/empty')
const tauriFixturePath = resolve(fixturePath, 'src-tauri')