Avoid real network calls in unit tests
Unit tests should not open real sockets; prefer doubles, recordings, or local fakes.
#Metadata
#Why it matters
Real network calls make tests flaky, slow, and unsafe against live systems.
#Remediation
Mock HTTP clients, use an in-memory server, or relocate the scenario to an explicit integration suite.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/typescript/ts.testing.no-network-call-in-unit-test.rule.yaml.