Skip to content

Commit

Permalink
fix old integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Lms24 committed Aug 29, 2023
1 parent a5aaed9 commit b618a52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/browser/test/integration/suites/builtins.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ describe('wrapped built-ins', function () {

assert.deepEqual(summary.events[0].exception.values[0].mechanism, {
type: 'instrument',
handled: true,
handled: false,
data: {
function: 'onreadystatechange',
},
Expand Down Expand Up @@ -237,7 +237,7 @@ describe('wrapped built-ins', function () {

assert.deepEqual(summary.events[0].exception.values[0].mechanism, {
type: 'instrument',
handled: true,
handled: false,
});
}
});
Expand Down Expand Up @@ -277,7 +277,7 @@ describe('wrapped built-ins', function () {
assert.oneOf(target, ['Node', 'EventTarget']);
assert.deepEqual(summary.events[0].exception.values[0].mechanism, {
type: 'instrument',
handled: true,
handled: false,
data: {
function: 'addEventListener',
},
Expand Down Expand Up @@ -313,7 +313,7 @@ describe('wrapped built-ins', function () {
assert.oneOf(target, ['Node', 'EventTarget']);
assert.deepEqual(summary.events[0].exception.values[0].mechanism, {
type: 'instrument',
handled: true,
handled: false,
data: {
function: 'addEventListener',
handler: '<anonymous>',
Expand Down

0 comments on commit b618a52

Please sign in to comment.