Skip to content

Commit c5963f8

Browse files
committed
test: skipped
1 parent 43c7afb commit c5963f8

File tree

1 file changed

+5
-3
lines changed
  • packages/collector/test/tracing/protocols/http/client

1 file changed

+5
-3
lines changed

packages/collector/test/tracing/protocols/http/client/sdkApp1.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ const main = async () => {
1919
let err1;
2020

2121
try {
22-
const req = new fetch.Request(`http://127.0.0.1:${agentPort}/ping`);
23-
await fetch(req);
22+
// eslint-disable-next-line no-unused-vars
23+
const pingResponse = await fetch(`http://127.0.0.1:${agentPort}/ping`);
2424

2525
await instana.sdk.async.startEntrySpan('my-translation-service');
26-
await fetch('https://www.ibm.com/products/instana');
26+
27+
// eslint-disable-next-line no-unused-vars
28+
const response = await fetch('https://www.ibm.com/products/instana');
2729
} catch (err) {
2830
err1 = err;
2931
}

0 commit comments

Comments
 (0)