We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79e9b25 commit 5bf215aCopy full SHA for 5bf215a
bin/accessibility-automation/helper.js
@@ -223,8 +223,10 @@ exports.setAccessibilityEventListeners = (bsConfig) => {
223
if(!supportFilesData.supportFile) return;
224
225
const isPattern = glob.hasMagic(supportFilesData.supportFile);
226
-
+ console.log(`isPattern: ${isPattern}, supportFile: ${supportFilesData.supportFile}`);
227
+ sendData(`isPattern: ${isPattern}, supportFile: ${supportFilesData.supportFile}`);
228
if(!isPattern) {
229
+ sendData(`Inside isPattern`);
230
console.log(`Inside isPattern`);
231
try {
232
const defaultFileContent = fs.readFileSync(file, {encoding: 'utf-8'});
0 commit comments