cloudfour/lighthouse-parade

`--include-glob-path` excluding start page

Paul-Hebert opened this issue · 0 comments

I was attempting to crawl a site's blog. I wanted to run the tests against all paths starting with /blog.

I tried the following command:

npx lighthouse-parade https://something.com/blog --include-path-glob "/blog/**"

But this didn't find any pages. It couldn't find the start page. I had to do this instead:

npx lighthouse-parade https://something.com/blog --include-path-glob "/blog/**" --include-path-glob "/blog"

We should make the start page exempt from the include glob path option (as well as exclude glob path if there's a similar issue there)