We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0cdc05 commit f833e5bCopy full SHA for f833e5b
packages/tracing-internal/test/browser/request.test.ts
@@ -434,7 +434,8 @@ describe('HTTPTimings', () => {
434
435
const protocols = Object.keys(nextHopToNetworkVersion);
436
for (const protocol of protocols) {
437
- expect(extractNetworkProtocol(protocol)).toMatchObject(nextHopToNetworkVersion[protocol]);
+ const expected: { name: string; version: string } = nextHopToNetworkVersion[protocol];
438
+ expect(extractNetworkProtocol(protocol)).toMatchObject(expected);
439
}
440
});
441
0 commit comments