You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log('Stacked area chart summary:',summaryText);
32
-
// TODO: Replace with exact expected text after running test
33
-
expect(summaryText).toBeTruthy();
29
+
expect(summaryText).toBe(
30
+
'Stacked area chart with 3 areas: 15m, 5m, 1m. X axis displays timestamp per 1 minute from Mar 1, 11:00 AM to Mar 1, 11:59 AM. Y axis displays System Load, ranging from 0 to 61.5546875.',
console.log('Multi-series line chart summary:',summaryText);
32
-
// TODO: Replace with exact expected text after running test
33
-
expect(summaryText).toBeTruthy();
29
+
expect(summaryText).toBe(
30
+
'Line chart with 3 lines: Series 1m, Series 5m, Series 15m. X axis displays X from Mar 1, 11:00 AM to Mar 1, 11:59 AM. Y axis displays System Load, ranging from 0 to 34.28125.',
31
+
);
34
32
});
35
33
36
34
test('should generate correct a11y summary for stacked line chart',async({ page })=>{
console.log('Stacked line chart summary:',summaryText);
43
-
// TODO: Replace with exact expected text after running test
44
-
expect(summaryText).toBeTruthy();
40
+
expect(summaryText).toBe(
41
+
'Stacked line chart with 3 lines: Series 15m, Series 5m, Series 1m. X axis displays X from Mar 1, 11:00 AM to Mar 1, 11:59 AM. Y axis displays System Load, ranging from 0 to 61.5546875.',
0 commit comments