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 3bce3cf commit f16e1a7Copy full SHA for f16e1a7
test/process.js
@@ -65,4 +65,11 @@ $(document).ready(function() {
65
equal(ajax_calls.length, 0);
66
});
67
68
+ test("should send a proper url", function() {
69
+ Raven.process("Fail");
70
+
71
+ var data = JSON.parse(ajax_calls[0].data);
72
+ equal(data["sentry.interfaces.Http"].url.indexOf('undefined'), -1, "If the url contains the string 'undefined' it probably means there is an issue.");
73
+ });
74
75
0 commit comments