Skip snapshot seed file commits (#28405)

This commit is contained in:
Kit Langton
2026-05-19 17:45:55 -04:00
committed by GitHub
parent a8f7c5ec93
commit 59c99dc62d
2 changed files with 1 additions and 2 deletions

View File

@@ -44,8 +44,6 @@ const initialize = Effect.fn("SnapshotTest.initialize")(function* (dir: string)
const bContent = `B${unique}`
yield* write(`${dir}/a.txt`, aContent)
yield* write(`${dir}/b.txt`, bContent)
yield* exec(dir, ["git", "add", "."])
yield* exec(dir, ["git", "commit", "-m", "init"])
return { aContent, bContent }
})