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 4c4bea5 commit c74ec20Copy full SHA for c74ec20
bin/accessibility-automation/helper.js
@@ -241,13 +241,9 @@ exports.setAccessibilityEventListeners = (bsConfig) => {
241
} catch(e) {
242
logger.debug(`Unable to modify file contents for ${file} to set event listeners with error ${e}`, true, e);
243
}
244
+ return;
245
246
- // Build the correct glob pattern
247
- // const globPattern = supportFilesData.supportFile.startsWith('/')
248
- // ? process.cwd() + supportFilesData.supportFile
249
- // : path.resolve(process.cwd(), supportFilesData.supportFile);
250
-
251
const globPattern = process.cwd() + supportFilesData.supportFile;
252
console.log(`Using glob pattern to find support files: ${globPattern}`);
253
glob(globPattern, {}, (err, files) => {
0 commit comments