From 6d0c2a8711882677913761ae6e4d7f6edfe8bfb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Sch=C3=A4fer?= Date: Tue, 3 Sep 2019 00:03:51 +0200 Subject: [PATCH] changlog #312 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90c91c80ec..e659184e82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # v0.18.1 +## Exception handling changed for TestNG + +When using TestNG, exceptions are not longer caught and suppressed until the end of a scenario. +This means that steps following a failed step are no longer shown in the scenario report. +This change was needed to ensure that TestNG reports the correct test status in case of an exception. + +See [PR #422](https://github.com/TNG/JGiven/pull/422) and [Issue #312](https://github.com/TNG/JGiven/issues/312) for details. + ## Fixed Issues * Fix issue with @Pending(executeSteps = true) that marked a scenario as failed instead of pending [#402](https://github.com/TNG/JGiven/issues/402)