I had followed the instruction and installed the jsonpath, below is the jsonpath folder under node_modules:
Then I import the jsonpath and used the query function as below:
Then when run the test, I got below error:
Error: Can't walk dependency graph: Cannot find module '..' from '/Users/jamiezhai/Automation/cypress-e2e-test/node_modules/jsonpath/jsonpath.js'
required by /Users/jamiezhai/Automation/cypress-e2e-test/node_modules/jsonpath/jsonpath.js
Pls can anyone help/suggest?
Thanks heaps!
I remember seeing something similar and discovered that this issue happens when the browser entry point (in package.json) is being used. Using the main entry point fixes it for me.
I had followed the instruction and installed the jsonpath, below is the jsonpath folder under node_modules:
Then I import the jsonpath and used the query function as below:
Then when run the test, I got below error: Error: Can't walk dependency graph: Cannot find module '..' from '/Users/jamiezhai/Automation/cypress-e2e-test/node_modules/jsonpath/jsonpath.js' required by /Users/jamiezhai/Automation/cypress-e2e-test/node_modules/jsonpath/jsonpath.js Pls can anyone help/suggest? Thanks heaps!