Skip to content

Commit

Permalink
fix(cli): test timeout (#11035)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Sep 17, 2024
1 parent 5ff0bbc commit 96c1ec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/__tests__/template.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 96c1ec3

Please sign in to comment.