Skip to content

Commit 5bcddb5

Browse files
nperez0111claude
andcommitted
fix: add curly braces to satisfy lint rule in serverUtil.test.ts
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent fb8f7c1 commit 5bcddb5

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/src/unit/nextjs/serverUtil.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ describe(`server-util in Next.js App Router (#942) [${MODE}]`, () => {
100100
}, 180_000);
101101

102102
afterAll(async () => {
103-
if (nextProcess?.pid == null) return;
103+
if (nextProcess?.pid == null) {
104+
return;
105+
}
104106

105107
await new Promise<void>((resolve) => {
106108
nextProcess.once("exit", () => resolve());

0 commit comments

Comments
 (0)