Skip to content

Commit

Permalink
Fix bug with cypress testIsolation option
Browse files Browse the repository at this point in the history
  • Loading branch information
JamyGolden committed Sep 13, 2023
1 parent 478d7cd commit a34406f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
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') && this.get('prev').get('chainerId') === this.get('chainerId')
? 'child'
: 'parent',
message: inputArr,
Expand Down

0 comments on commit a34406f

Please sign in to comment.