Skip to content

Commit 0761858

Browse files
committed
e2e: upd readme and run properties
1 parent 56054e0 commit 0761858

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,14 @@ subprojects {
2828

2929
boolean resolveBooleanProperty(String propertyName, boolean defaultValue = false) {
3030
def propertyValueStr = findProperty(propertyName)
31-
return propertyValueStr == null ? defaultValue : propertyValueStr.toBoolean();
31+
return propertyValueStr == null ? defaultValue : propertyValueStr.toBoolean()
3232
}
3333

3434
ext {
3535
release = resolveBooleanProperty("release")
3636
includeFrontend = resolveBooleanProperty("include-frontend", release)
3737
buildDockerImages = resolveBooleanProperty("build-docker-images", release)
3838
runE2e = resolveBooleanProperty("run-e2e")
39-
e2eHeadlessOff = resolveBooleanProperty("e2e-headless-off")
40-
e2eSelenoidOff = resolveBooleanProperty("e2e-selenoid-off")
4139
}
4240

4341
sonar {

e2e-tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ docker-compose -f documentation/compose/e2e-tests.yaml up -d
4040
2. To run test suite select its name (options: `regression`, `sanity`, `smoke`) and put it instead %s into command below
4141

4242
```
43-
./mvnw -Dsurefire.suiteXmlFiles='src/test/resources/%s.xml' -f 'e2e-tests' test -Pprod
43+
./gradlew :e2e-tests:test -Prun-e2e=true -Psuite_name=%s
4444
```
4545

4646
### Reporting

e2e-tests/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ test {
5252
suiteXmlFiles = [suitePath.toFile()]
5353
}
5454

55-
systemProperty "headless", e2eHeadlessOff
56-
systemProperty "selenoid", e2eSelenoidOff
5755
systemProperty "allure.results.directory",
5856
project.layout.buildDirectory.dir("allure-results").get().getAsFile().getAbsolutePath()
5957
}

0 commit comments

Comments
 (0)