Skip to content
Open
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
6 changes: 5 additions & 1 deletion packages/core/test/git.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ import { branch, commit, gitRemote } from "./fixture/git"
import { tmpdir } from "./fixture/tmpdir"
import { testEffect } from "./lib/effect"

const it = testEffect(LayerNode.compile(Git.node))
// These tests spawn real git subprocesses (init, clone, worktree add,
// diff/tree writes). On GitHub-hosted Windows runners each op costs
// 100ms-2.8s under full-suite load, exceeding bun's 5s default per-test
// timeout (LAC-2770 clone timeout; same shape as LAC-2717).
const it = testEffect(LayerNode.compile(Git.node), { timeout: 30_000 })

describe("Git", () => {
it.live("clones a remote and reads checkout metadata", () =>
Expand Down
Loading