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 498eec5 commit 9ee864cCopy full SHA for 9ee864c
packages/browser/test/integration/suites/breadcrumbs.js
@@ -63,10 +63,11 @@ describe("breadcrumbs", function() {
63
"//" +
64
document.location.hostname +
65
(document.location.port ? ":" + document.location.port : "") +
66
- "/api/1/store/";
+ "/api/1/store/" +
67
+ "?sentry_key=1337";
68
69
var xhr = new XMLHttpRequest();
- xhr.open("GET", store);
70
+ xhr.open("POST", store);
71
xhr.send('{"message":"someMessage","level":"warning"}');
72
waitForXHR(xhr, function() {
73
Sentry.captureMessage("test");
0 commit comments