I saw this pattern used in a configuration file for protractor.
specs: [
'test/e2e/**/*.spec.js'
]
To mean it means "all files inside test/e2e". What kind of pattern is this? I think it's not regex because of those unescaped slashes. Especially, why is there **
in the middle, not just test/e2e/*.spec.js
?
I tried using the search engine, but did not find anything useful probably because the asterisks don't work very well in search engines.