Skip to content

Commit 5b86766

Browse files
authored
Merge pull request #1421 from w3c/development
Create June 3, 2025 Release Includes the following changes: * #1419
2 parents 786d61b + 204f2d4 commit 5b86766

File tree

5 files changed

+53
-4
lines changed

5 files changed

+53
-4
lines changed

client/components/ReportRerun/RerunDashboard.jsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,19 @@ const RerunDashboard = ({ activeRuns, onRerunClick }) => {
7979
: 'earlier versions'}{' '}
8080
of {run.botName} can be automatically updated with the
8181
"Start Generating Reports" button below.
82+
{/* TODO: Remove below when https://github.com/w3c/aria-at-app/issues/1417 is addressed */}
83+
<br />
84+
<br />
85+
Note: The button is temporarily disabled while we work on
86+
upcoming feature updates.
8287
</p>
8388
</div>
8489

8590
<div className={styles.actionHeader}>
91+
{/* TODO: Re-enable when https://github.com/w3c/aria-at-app/issues/1417 is addressed */}
8692
<button
8793
className={styles.rerunButton}
88-
disabled={totalReports === 0}
94+
disabled={true /* totalReports === 0 */}
8995
onClick={() => onRerunClick(run)}
9096
aria-label={buttonAriaLabel}
9197
>

client/tests/e2e/ReportRerun.e2e.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ describe('Report Rerun tab', () => {
6969
});
7070
});
7171

72-
it('handles rerun action for specific bot version', async () => {
72+
// TODO: Remove skip once https://github.com/w3c/aria-at-app/issues/1417 is addressed
73+
it.skip('handles rerun action for specific bot version', async () => {
7374
await getPage({ role: 'admin', url: '/test-queue' }, async page => {
7475
await switchToReportRerunTab(page);
7576

client/tests/e2e/snapshots/saved/_test-queue.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2149,12 +2149,15 @@ <h3 class="disclosure-heading">
21492149
<p>
21502150
The following 1 report generated with 1 earlier
21512151
version of NVDA Bot can be automatically updated with
2152-
the "Start Generating Reports" button below.
2152+
the "Start Generating Reports" button below.<br /><br />Note:
2153+
The button is temporarily disabled while we work on
2154+
upcoming feature updates.
21532155
</p>
21542156
</div>
21552157
<div class="action-header">
21562158
<button
21572159
class="rerun-button"
2160+
disabled=""
21582161
aria-label="Start generating reports for 1 reports with NVDA Bot 2023.3.3">
21592162
Start Generating Reports
21602163
</button>
@@ -2226,12 +2229,15 @@ <h3 class="disclosure-heading">
22262229
The following 4 reports generated with 2 earlier
22272230
versions of VoiceOver for macOS Bot can be
22282231
automatically updated with the "Start Generating
2229-
Reports" button below.
2232+
Reports" button below.<br /><br />Note: The button is
2233+
temporarily disabled while we work on upcoming feature
2234+
updates.
22302235
</p>
22312236
</div>
22322237
<div class="action-header">
22332238
<button
22342239
class="rerun-button"
2240+
disabled=""
22352241
aria-label="Start generating reports for 4 reports with VoiceOver for macOS Bot 14.0">
22362242
Start Generating Reports
22372243
</button>
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
'use strict';
2+
3+
/** @type {import('sequelize-cli').Migration} */
4+
module.exports = {
5+
async up(queryInterface) {
6+
return queryInterface.sequelize.transaction(async transaction => {
7+
// Removing to support needs of https://github.com/w3c/aria-at-app/issues/1417
8+
// before running Automated Report Collection again
9+
await queryInterface.sequelize.query(
10+
`
11+
delete
12+
from "TestPlanReport"
13+
where id in (399, 400, 401, 402, 403, 404, 405, 406, 407, 408)
14+
and "atId" = 2
15+
and "createdAt" between '2025-05-29 19:00' and '2025-05-29 19:01'
16+
`,
17+
{ transaction }
18+
);
19+
20+
await queryInterface.sequelize.query(
21+
`
22+
delete
23+
from "UpdateEvent"
24+
where id = 1
25+
`,
26+
{ transaction }
27+
);
28+
});
29+
},
30+
31+
async down() {
32+
// Note: This migration cannot be reversed as it deletes data
33+
// We could potentially restore from a backup if needed
34+
}
35+
};

testers.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ tactics2
3737
thinkbulecount2
3838
lezette
3939
LouisDo10
40+
rohitsen49

0 commit comments

Comments
 (0)