Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion test/cli-e2e/basic.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ describe('openspec CLI e2e basics', () => {
const specs = await runCLI(['list', '--specs'], { cwd: cloneDir, env });
expect(specs.exitCode).toBe(0);
expect(specs.stdout).toContain('No specs found.');
});
// Seven subprocesses (3 CLI, 4 git): ~2.6s on the Windows runner, past 10s under load.
}, 60_000);

it('shows help output', async () => {
const result = await runCLI(['--help']);
Expand Down
3 changes: 2 additions & 1 deletion test/update-flake-script.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ describe('update-flake.sh confines every hash rewrite to the pnpmDeps block', ()
expect(updated).not.toContain(placeholder);

fs.rmSync(dir, { recursive: true, force: true });
});
// Three `bash` spawns: 0.3s to 13s on the Windows runner depending on load.
}, 60_000);

it('refuses to touch the file when no pnpmDeps hash is found', () => {
expect(script).toContain('no pnpmDeps hash found in flake.nix');
Expand Down
Loading