Skip to content

Commit fff5520

Browse files
skulidropekclaude
andcommitted
fix(tests): remove void operator from consumer fixture (sonarjs/void-use)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent c7fe624 commit fff5520

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

packages/app/tests/consumer/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,5 @@ type Paths = {
1818

1919
const client = createClientEffect<Paths>()
2020

21-
// Verify .GET exists and returns something (compile-time check only)
22-
const _result = client.GET("/health")
23-
void _result
21+
// Verify .GET exists and returns something (compile-time only)
22+
client.GET("/health")

0 commit comments

Comments
 (0)