Skip to content

Commit 062588d

Browse files
authored
Merge pull request #430 from aryang-lambdatest/CBT-20920
accessibility extension validation fixed in case of chrome-for-testing
2 parents 2a60112 + f666d65 commit 062588d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

accessibility/plugin/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const Accessibility = (on, config) => {
9494
on('before:browser:launch', (browser = {}, launchOptions) => {
9595
try {
9696
if (process.env.ACCESSIBILITY_EXTENSION_PATH !== undefined) {
97-
if (browser.name !== 'chrome' && browser.name !== 'edge') {
97+
if (browser.name !== 'chrome' && browser.name !== 'edge' && browser.name !== 'chrome-for-testing') {
9898
console.log(`Accessibility Automation will run only on Chrome and Edge browsers. But browser used is ` + browser.name);
9999
browser_validation = false;
100100
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lambdatest-cypress-cli",
3-
"version": "3.0.39",
3+
"version": "3.0.40",
44
"description": "The lambdatest-cypress-cli is LambdaTest's command-line interface (CLI) aimed to help you run your Cypress tests on LambdaTest platform.",
55
"homepage": "https://github.com/LambdaTest/lambdatest-cypress-cli",
66
"author": "LambdaTest <[email protected]>",

0 commit comments

Comments
 (0)