File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 * SPDX-License-Identifier: Apache-2.0
1717 */
1818
19- // eslint-disable-next-line max-len
19+ // eslint-disable-next-line @stylistic/ max-len
2020const PROPERTY_REGEX = / [ ^ . [ \] ] + | \[ (?: ( - ? \d + (?: \. \d + ) ? ) | ( [ " ' ] ) ( (?: (? ! \2) [ ^ \\ ] | \\ .) * ?) \2) \] | (? = (?: \. | \[ \] ) (?: \. | \[ \] | $ ) ) / g;
2121const ESCAPE_REGEX = / \\ ( \\ ) ? / g;
2222
Original file line number Diff line number Diff line change @@ -797,5 +797,7 @@ async function _logExit(code) {
797797 logger . end ( ) ;
798798 } ) ;
799799 await p ;
800- } finally { }
800+ } finally {
801+ // contine regardles of error
802+ }
801803}
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ container.add = function(id) {
8787 const child = createChild . apply ( wrapper , [ childMeta ] ) ;
8888 // if child `defaultMeta` is not set, add it to ensure that the parent
8989 // meta is included
90- if ( ! Object . hasOwnProperty ( child , 'defaultMeta' ) ) {
90+ if ( ! Object . prototype . hasOwnProperty . call ( child , 'defaultMeta' ) ) {
9191 child . defaultMeta = { ...wrapper . defaultMeta , ...childMeta } ;
9292 }
9393 return child ;
You can’t perform that action at this time.
0 commit comments