test: relax timeouts for slow runs

This commit is contained in:
Peter Steinberger
2026-01-05 01:35:11 +01:00
parent f90eea5195
commit d58828ebd7
3 changed files with 4 additions and 4 deletions

View File

@@ -43,5 +43,5 @@ describe("resolvePythonExecutablePath", () => {
process.env.PATH = originalPath;
await fs.rm(tmp, { recursive: true, force: true });
}
}, 15_000);
}, 60_000);
});