1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00

docs: update gatlingExecuteTests example (#4726)

There is no testModule parameter in gatlingExecuteTests, the correct parameter to be used is pomPath
This commit is contained in:
Oliver Burré 2023-12-18 14:53:13 +01:00 committed by GitHub
parent cd8c93ea6c
commit c3d420a752
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,5 +19,5 @@ We recommend to define values of step parameters via [config.yml file](../config
Pipeline step:
```groovy
gatlingExecuteTests script: this, testModule: 'performance-tests/pom.xml'
gatlingExecuteTests script: this, pomPath: 'performance-tests/pom.xml'
```