You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a config file that contains ~40 urls, which I run as: pa11y-ci --config ./pa11y-ci.conf.js
It would be useful (e.g., when debugging) to be able to run a subset of these urls. I tried: pa11y-ci --config ./pa11y-ci.conf.js http://localhost/path
However, this appears to run the listed path(s) before the config file.
With cypress, I can run the full test suite by default, but it is also easy to run specific tests.
Thank you for considering this request.
The text was updated successfully, but these errors were encountered:
I made a workaround. In pa11y-ci.conf.js, I moved urls from module.exports to a local variable, and instead call a function inside module.exports to pick matching entries. The first call matches all urls; the second matches urls that contain any of the strings.
I have a config file that contains ~40 urls, which I run as:
pa11y-ci --config ./pa11y-ci.conf.js
It would be useful (e.g., when debugging) to be able to run a subset of these urls. I tried:
pa11y-ci --config ./pa11y-ci.conf.js http://localhost/path
However, this appears to run the listed path(s) before the config file.
With
cypress
, I can run the full test suite by default, but it is also easy to run specific tests.Thank you for considering this request.
The text was updated successfully, but these errors were encountered: