From c1069646c08bfd36fdce19059ad6a7dd14e6980b Mon Sep 17 00:00:00 2001
From: "checkly-release-bot[bot]"
<2754512+checkly-release-bot[bot]@users.noreply.github.com>
Date: Wed, 13 May 2026 14:30:51 +0000
Subject: [PATCH] docs: sync Playwright Reporter changelog v1.12.0
---
detect/testing/playwright-reporter-changelog.mdx | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/detect/testing/playwright-reporter-changelog.mdx b/detect/testing/playwright-reporter-changelog.mdx
index 0edcaf50..41af7297 100644
--- a/detect/testing/playwright-reporter-changelog.mdx
+++ b/detect/testing/playwright-reporter-changelog.mdx
@@ -13,6 +13,22 @@ Learn more about:
## Full release history
+
+ **Added**
+
+ - **Run-level status on the JSON report** — Reports now include `_checkly.status` reflecting Playwright's `FullResult.status` (`passed`, `failed`, `timedout`, or `interrupted`). Lets downstream consumers distinguish a timed-out or interrupted run from a passed one without having to infer it from test counts.
+
+ **Fixed**
+
+ - **Tests killed by `globalTimeout` are now visible in the report** — Previously, tests that started but never finished (for example because Playwright's `globalTimeout` fired mid-run) were silently dropped from `report.suites[]`. They now appear in the report with an empty `results` array, so the run summary accurately reflects what was attempted.
+
+ ## 1.11.2
+
+ **Added**
+
+ - **Post-processing timing in check result logs** — When enabled via `CHECKLY_REPORTER_PROFILE_LOGS`, the reporter now includes timing breakdowns for internal processing steps (trace processing, sanitizing, report building) in the check result logs.
+
+
**Improved**