chore (tests): format apply-patch e2e test

This commit is contained in:
Vignesh Natarajan
2026-02-14 18:38:05 -08:00
parent 424c718bc5
commit a6f3048e44

View File

@@ -181,7 +181,9 @@ describe("applyPatch", () => {
*** End Patch`;
try {
await expect(applyPatch(patch, { cwd: dir })).rejects.toThrow(/Symlink escapes sandbox root/);
await expect(applyPatch(patch, { cwd: dir })).rejects.toThrow(
/Symlink escapes sandbox root/,
);
const stillThere = await fs.readFile(outsideFile, "utf8");
expect(stillThere).toBe("victim\n");
} finally {