Skip to content

Commit 4707675

Browse files
tombrunetdependabot[bot]nam-singh
authored
chore(repo): Add note of unapproved in ACT txt debug result (for 4.x branch) (#2181)
* Bump path-to-regexp and express in /rule-server (#2128) Bumps [path-to-regexp](https://github.com/pillarjs/path-to-regexp) to 0.1.12 and updates ancestor dependency [express](https://github.com/expressjs/express). These dependencies need to be updated together. Updates `path-to-regexp` from 0.1.10 to 0.1.12 - [Release notes](https://github.com/pillarjs/path-to-regexp/releases) - [Changelog](https://github.com/pillarjs/path-to-regexp/blob/master/History.md) - [Commits](pillarjs/path-to-regexp@v0.1.10...v0.1.12) Updates `express` from 4.21.0 to 4.21.2 - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/4.21.2/History.md) - [Commits](expressjs/express@4.21.0...4.21.2) --- updated-dependencies: - dependency-name: path-to-regexp dependency-type: indirect - dependency-name: express dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Brunet <thbrunet@us.ibm.com> * fix dark mode react portal pop-up (#2138) * fix(extension):Fix reset filter link #1877 (#2136) * reset filter fix * css fix --------- Co-authored-by: Tom Brunet <thbrunet@us.ibm.com> * fix(extension): Don't show full data:text/html content on generated HTML report page (#2140) * truncating url * remove unused import * Adjust tooltip location --------- Co-authored-by: Tom Brunet <thbrunet@us.ibm.com> * chore(extension): carbon package update and use new carbon combobutton #1842 (#2137) * carbon package update and use new carbon combobutton * alignment fix --------- Co-authored-by: Tom Brunet <thbrunet@us.ibm.com> * Add note of unapproved in ACT txt result --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Namrata Singh <nam.singh@ibm.com>
1 parent a08baf4 commit 4707675

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

accessibility-checker/test-act-w3/main.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import * as fs from "fs";
4949

5050
try {
5151
// This rule has testcases, run the test
52-
console.group(`+ ${testcase.testcaseTitle}: ${testcase.url}`);
52+
console.group(`+ ${testcase.testcaseTitle}${testcase.approved ? "" : " [not approved]" }: ${testcase.url}`);
5353
// Special handling for meta refresh
5454
if (ext === ".html" || ext === ".xhtml") {
5555
if (testcase.ruleId === "bisz58" || testcase.ruleId === "bc659a")

accessibility-checker/test-act/main.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import * as fs from "fs";
3333
try {
3434
// If no tests, don't bother loading the testcase
3535
if (ruleTestInfo[ruleId].aceRules.length > 0) {
36-
console.group(`+ ${testcase.testcaseTitle}: ${testcase.url}`);
36+
console.group(`+ ${testcase.testcaseTitle}${testcase.approved ? "" : " [not approved]" }: ${testcase.url}`);
3737
if (ext === ".html" || ext === ".xhtml") {
3838
// Special handling for meta refresh
3939
if (testcase.testcaseId === "cbf6409b0df0b3b6437ab3409af341587b144969"
@@ -58,7 +58,7 @@ import * as fs from "fs";
5858
}
5959
}
6060
} else {
61-
console.group(`? ${testcase.testcaseTitle}: ${testcase.url}`);
61+
console.group(`? ${testcase.testcaseTitle}${testcase.approved ? "" : " [not approved]" }: ${testcase.url}`);
6262
}
6363
let { title, result, issuesFail, issuesPass, issuesReview, issuesAll } = await getResult(pupPage, testcase.testcaseId, ruleTestInfo[ruleId].aceRules, !(ext === ".html" || ext === ".htm"));
6464
earlResult["@graph"].push({

0 commit comments

Comments
 (0)