Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
using correct assertion
Co-authored-by: Wolfgang Therrien <[email protected]>
  • Loading branch information
m0sa and wolfgangcodes authored Oct 23, 2025
commit 32c82fdc996c6d67a9d60bedf2ec93bf29070d59
Original file line number Diff line number Diff line change
Expand Up @@ -403,8 +403,8 @@ describe('fetch', () => {
});
response = result.response;
});
it('should be handled correctly', async () => {
assert.strictEqual(response?.status, 204);
it('204 (No Content) will correctly end the span', async () => {
assert.strictEqual(exportedSpans.length, 1);
});
});

Expand Down