First of all:
Thanks for the great plug-in. This will ease my daily work 👍
Unfortunately when setting the glob to something like:
"nodeTdd.glob": "{src,spec}/**/*.{js,ts,jsx,tsx}"
The '**' will only match exactly one folder level. Not more, not less. I would have assumed that it'd find spec files in sub folders as and in the spec and src folders as well.
I am running code on Windows. Is this an expected/known behavior?
Please also check following visualization:
spec
|-- spec1.js // changes here will be ignored
|-- folder
|---- spec2.js // changes here will trigger new test run
|---- anotherFolder
|----------- spec3.js // changes here will be ignored
First of all:
Thanks for the great plug-in. This will ease my daily work 👍
Unfortunately when setting the glob to something like:
The '**' will only match exactly one folder level. Not more, not less. I would have assumed that it'd find spec files in sub folders as and in the
specandsrcfolders as well.I am running code on Windows. Is this an expected/known behavior?
Please also check following visualization: