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 5096d3b commit 758b2c3Copy full SHA for 758b2c3
tests/Tracing/RequestDataCollectorIntegrationTest.php
@@ -72,14 +72,6 @@
72
// Verify the request data matches what we expect
73
expect($processedRecord->context['request']['method'])->toBe('GET');
74
expect($processedRecord->context['request']['url'])->toContain('/test-route/123');
75
-
76
- // Verify it renders correctly in the issue template
77
- $rendered = $this->renderer->render($this->stubLoader->load('issue'), $processedRecord);
78
79
- expect($rendered)
80
- ->toContain('## Request')
81
- ->toContain('"method": "GET"')
82
- ->toContain('/test-route/123');
83
});
84
85
it('captures route data for POST route that throws an exception', function () {
0 commit comments