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 ad78ea1 commit 5784acfCopy full SHA for 5784acf
test/raven.test.js
@@ -1187,10 +1187,11 @@ describe('globals', function() {
1187
globalOptions = {
1188
projectId: 2,
1189
logger: 'javascript',
1190
+ maxMessageLength: 100,
1191
serverName: 'abc123',
1192
};
1193
- send({foo: 'bar'});
1194
+ send({message: 'bar'});
1195
assert.deepEqual(window.makeRequest.lastCall.args[0].data, {
1196
project: '2',
1197
server_name: 'abc123',
@@ -1203,7 +1204,7 @@ describe('globals', function() {
1203
1204
}
1205
},
1206
event_id: 'abc123',
- foo: 'bar',
1207
+ message: 'bar',
1208
extra: {'session:duration': 100}
1209
});
1210
0 commit comments