Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions accessibility/plugin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ const Accessibility = (on, config) => {
const accessibility_ext_path = process.env.ACCESSIBILITY_EXTENSION_PATH

launchOptions.args.push(`--load-extension=` + accessibility_ext_path)
launchOptions.args.push('--disable-features=DisableLoadExtensionCommandLineSwitch')
return launchOptions
}
}
Expand Down
2 changes: 1 addition & 1 deletion converter/converter.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ function convertConfig(lt_config, outputFilePath) {
he_yaml.pre.push("npm install cypress@" + obj.run_settings.cypress_version+" --legacy-peer-deps");
}

if (obj.run_settings.npm_dependencies.length == 0 && !obj.run_settings.cypress_version) {
if (!obj.run_settings.npm_dependencies ||( obj.run_settings.npm_dependencies.length == 0 && !obj.run_settings.cypress_version)) {
he_yaml.pre.push("npm install --legacy-peer-deps");
}

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lambdatest-cypress-cli",
"version": "3.0.37",
"version": "3.0.38",
"description": "The lambdatest-cypress-cli is LambdaTest's command-line interface (CLI) aimed to help you run your Cypress tests on LambdaTest platform.",
"homepage": "https://github.com/LambdaTest/lambdatest-cypress-cli",
"author": "LambdaTest <[email protected]>",
Expand Down