fix: disable GPG signing in snapshot tests (#3102)

This commit is contained in:
Alberto Fanton 2025-10-14 06:40:41 +02:00 committed by GitHub
parent b91582d68a
commit 7ef246f98f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,7 +14,7 @@ async function bootstrap() {
await Bun.write(`${dir}/a.txt`, aContent)
await Bun.write(`${dir}/b.txt`, bContent)
await $`git add .`.cwd(dir).quiet()
await $`git commit -m init`.cwd(dir).quiet()
await $`git commit --no-gpg-sign -m init`.cwd(dir).quiet()
return {
aContent,
bContent,