diff --git a/docs/run-settings.md b/docs/run-settings.md index 17ca42770..4fa8a5f12 100644 --- a/docs/run-settings.md +++ b/docs/run-settings.md @@ -392,7 +392,7 @@ It's recommended to use `npm_dependencies` instead of `package.json` because `pa ## Specific Node Version LambdaTest allows you to specify the Node.js version for running your tests using the ``useNodeVersion`` capability in the `run_settings` section of the `lambdatest-config.json` file. This capability provides greater flexibility and ensures compatibility with your project's dependencies and environment. -> Supported Versions are 18, 20 and 22 +> Supported Versions are 18, 20 and 22. The exact version will be used are `18.17.1`, `20.18.0`, and `22.11.0` respectively ```javascript title="lambdatest-config.json" "run_settings": { diff --git a/docs/sharding-espresso.md b/docs/sharding-espresso.md index fb5c0be22..14b5d69b6 100644 --- a/docs/sharding-espresso.md +++ b/docs/sharding-espresso.md @@ -304,6 +304,22 @@ filters: This example will fetch all the test cases from 2 classes and 1 package as defined above and divide them with respect to concurrency given in the yaml file. +## Generate Reports and Artifacts +To generate artifacts for your Espresso tests, add the `artifacts: true`, and `report: true` flag in your YAML file: + +```yaml +report: true +framework: + name: "android/espresso" + args: + artifacts: true + ...// +``` + +To download these artifacts in your local machine, you can pass the `--download-artifacts` and `--download-report` flag with the CLI command to execute the tests as shown in the next step. + +> Learn more about it in the [HyperExecute Espresso Documentation](https://www.lambdatest.com/support/docs/hyperexecute-espresso-testing/) + ## Additional Links - [Advanced Configuration for Capabilities](https://www.lambdatest.com/support/docs/desired-capabilities-in-appium/)