Skip snapshot seed file commits (#28405)

This commit is contained in:
Kit Langton 2026-05-19 17:45:55 -04:00 committed by GitHub
commit 59c99dc62d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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 }
})