Skip to content

Commit 26edf6d

Browse files
committed
Merge branch 'upstream/show-ab-session-in-testtool-timeline' into bbc-release53
2 parents f4f818d + 05471e3 commit 26edf6d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/webui/src/client/ui/TestTools/Timeline.tsx

+6
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,12 @@ function renderTimelineState(state: TimelineState, filter: RegExp | string | und
253253
<td>{(o.classes ?? []).join('<br />')}</td>
254254
<td style={{ whiteSpace: 'pre' }}>
255255
<pre>{JSON.stringify(o.content, undefined, '\t')}</pre>
256+
<pre>
257+
{
258+
//@ts-expect-error - abSessions is not in the type but are still in the object if used:
259+
o.abSessions && 'AB-Sessions:' + '\n' + JSON.stringify(o.abSessions, undefined, '\t')
260+
}
261+
</pre>
256262
</td>
257263
</tr>
258264
))

0 commit comments

Comments
 (0)