Skip to content

Commit

Permalink
fix: support testIsolation option (#257)
Browse files Browse the repository at this point in the history
Co-authored-by: Kent C. Dodds <me@kentcdodds.com>
  • Loading branch information
JamyGolden and kentcdodds committed Sep 13, 2023
1 parent 478d7cd commit 063a2ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Expand Up @@ -37,7 +37,7 @@ function createQuery(queryName, implementationName) {
Cypress.log({
name: queryName,
type:
this.get('prev').get('chainerId') === this.get('chainerId')
this.get('prev')?.get('chainerId') === this.get('chainerId')
? 'child'
: 'parent',
message: inputArr,
Expand Down

0 comments on commit 063a2ff

Please sign in to comment.