We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f27065 commit 51d7e79Copy full SHA for 51d7e79
cypress/e2e/trafficlight/actions/timeline.ts
@@ -47,11 +47,11 @@ export function verifyLastMessageIsTrusted(): string {
47
return "verified";
48
}
49
50
-export function getTimeline(): JSONValue {
51
- const rsp = [];
+export function getTimeline(): Record<string, any> {
+ const rsp: any = [];
52
Cypress.$('.mx_EventTile').each(
53
function(index, obj) {
54
- tile = {};
+ const tile = {};
55
tile['user'] = Cypress.$(obj).find('.mx_BaseAvatar_image').attr('title');
56
const e2eicon = Cypress.$(obj).find('.mx_EventTile_e2eIcon').attr('class');
57
tile['e2e_issues'] = e2eicon;
0 commit comments