Skip to content

Commit 861b666

Browse files
committed
chaintest-core-java release v1.0.12
1 parent fc20dbd commit 861b666

File tree

9 files changed

+33
-7
lines changed

9 files changed

+33
-7
lines changed

Changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 1.0.12
2+
3+
* [#72](../../issues/72) Skipped test descriptions are not reported
4+
* [#77](../../issues/77) CucumberJVM plugin: attach screenshots at the step level
5+
* [#80](../../issues/80) ChainTest Report is showing incorrect time taken for the execution
6+
* [#85](../../issues/85) Ability to toggle test content
7+
18
## 1.0.11
29

310
* [#57](../../issues/57) Static generators: Dynamically set output file name

core/chaintest-core-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.aventstack</groupId>
88
<artifactId>chaintest-core</artifactId>
9-
<version>1.0.11</version>
9+
<version>1.0.12</version>
1010
<url>https://github.com/anshooarora/chaintest</url>
1111
<name>${artifactId}</name>
1212
<description>Core Java client library for ChainTest framework</description>

examples/chaintest-cucumber-jvm-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.example</groupId>
88
<artifactId>chaintest-cucumber-jvm-example</artifactId>
9-
<version>1.0.11</version>
9+
<version>1.0.12</version>
1010

1111
<properties>
1212
<maven.compiler.source>11</maven.compiler.source>

examples/chaintest-junit5-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.example</groupId>
88
<artifactId>chaintest-junit5-example</artifactId>
9-
<version>1.0.11</version>
9+
<version>1.0.12</version>
1010

1111
<properties>
1212
<maven.compiler.source>11</maven.compiler.source>

examples/chaintest-testng-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.aventstack</groupId>
88
<artifactId>chaintest-testng-example</artifactId>
9-
<version>1.0.11</version>
9+
<version>1.0.12</version>
1010

1111
<properties>
1212
<maven.compiler.source>11</maven.compiler.source>

plugins/chaintest-cucumber-jvm/Readme.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,25 @@ ChainTest plugin for [Cucumber-JVM](https://cucumber.io/docs/installation/java/)
3434
}
3535
```
3636

37+
#### Attaching Screenshots/Logs to Step instead of Scenarios
38+
39+
Available via config start `1.0.12` from #77.
40+
41+
It will now be possible to revert the default behavior where all embeds/logs are attached to Scenario. Instead, with this property enabled, the last executed Step is used for reference:
42+
43+
```
44+
chaintest.plugins.cucumber.attach-to-step
45+
```
46+
47+
The above can be supplied as a System Property or Environment variable. Example:
48+
49+
```
50+
mvn clean test -Dchaintest.plugins.cucumber.attach-to-step=true
51+
52+
// or
53+
System.setProperty("chaintest.plugins.cucumber.attach-to-step", "true");
54+
```
55+
3756
## License
3857
3958
Cucumber-JVM plugin for ChainTest is open-source software and licensed under Apache-2.0.

plugins/chaintest-cucumber-jvm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.aventstack</groupId>
88
<artifactId>chaintest-cucumber-jvm</artifactId>
9-
<version>1.0.11</version>
9+
<version>1.0.12</version>
1010
<url>https://github.com/anshooarora/chaintest</url>
1111
<name>${artifactId}</name>
1212
<description>ChainTest plugin for CucumberJVM</description>

plugins/chaintest-junit5/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.aventstack</groupId>
88
<artifactId>chaintest-junit5</artifactId>
9-
<version>1.0.11</version>
9+
<version>1.0.12</version>
1010
<url>https://github.com/anshooarora/chaintest</url>
1111
<name>${artifactId}</name>
1212
<description>ChainTest plugin for JUnit-5</description>

plugins/chaintest-testng/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.aventstack</groupId>
88
<artifactId>chaintest-testng</artifactId>
9-
<version>1.0.11</version>
9+
<version>1.0.12</version>
1010
<url>https://github.com/anshooarora/chaintest</url>
1111
<name>${artifactId}</name>
1212
<description>ChainTest plugin for TestNG Framework</description>

0 commit comments

Comments
 (0)