File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
integration-karma/test/component/native-vs-synthetic-lifecycle
integration-not-karma/configs Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ const expectLogs = (regexes) => {
2525 const args = logger . calls . allArgs ( ) ;
2626 expect ( args . length ) . toBe ( regexes . length ) ;
2727 for ( let i = 0 ; i < args . length ; i ++ ) {
28- expect ( args [ i ] [ 0 ] ) . toMatch ( regexes [ i ] ) ;
28+ expect ( args [ i ] [ 0 ] ) . toBeInstanceOf ( Error ) ;
29+ expect ( args [ i ] [ 0 ] . message ) . toMatch ( regexes [ i ] ) ;
2930 }
3031 }
3132} ;
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ export default {
1010 '!test/accessibility/synthetic-cross-root-aria/index.spec.js' ,
1111 '!test/api/freezeTemplate/index.spec.js' ,
1212 '!test/component/LightningElement.addEventListener/index.spec.js' ,
13- '!test/component/native-vs-synthetic-lifecycle/index.spec.js' ,
1413 '!test/custom-elements-registry/index.spec.js' ,
1514 '!test/events/focus-event-related-target/index.spec.js' ,
1615 '!test/integrations/locker/index.spec.js' ,
You can’t perform that action at this time.
0 commit comments