We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6933aeb + b9cc388 commit 07321fcCopy full SHA for 07321fc
bin/accessibility-automation/helper.js
@@ -191,7 +191,9 @@ const getAccessibilityCypressCommandEventListener = () => {
191
const setAccessibilityEventListeners = () => {
192
try {
193
const cypressCommandEventListener = getAccessibilityCypressCommandEventListener();
194
- glob(process.cwd() + '/cypress/support/*.js', {}, (err, files) => {
+
195
+ // Searching form command.js recursively
196
+ glob(process.cwd() + '/**/cypress/support/*.js', {}, (err, files) => {
197
if(err) return logger.debug('EXCEPTION IN BUILD START EVENT : Unable to parse cypress support files');
198
files.forEach(file => {
199
0 commit comments