Skip to content

Commit e47967a

Browse files
brkalowclaude
andcommitted
fix(test): Add missing curly braces to satisfy lint rule
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f580dcf commit e47967a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

integration/tests/resiliency.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,9 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withEmailCodes] })('resilienc
327327
// setActive should surface the 429 error so the developer can handle it
328328
const error = await page.evaluate(async () => {
329329
const session = window.Clerk?.session;
330-
if (!session) return null;
330+
if (!session) {
331+
return null;
332+
}
331333
try {
332334
await window.Clerk?.setActive({ session });
333335
return null;

0 commit comments

Comments
 (0)