Skip to content

Commit

Permalink
chore(repo): Add note of unapproved in ACT txt debug result (for 4.x …
Browse files Browse the repository at this point in the history
…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] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom Brunet <[email protected]>

* 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 <[email protected]>

* 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 <[email protected]>

* 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 <[email protected]>

* Add note of unapproved in ACT txt result

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Namrata Singh <[email protected]>
  • Loading branch information
3 people authored Feb 4, 2025
1 parent a08baf4 commit 4707675
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion accessibility-checker/test-act-w3/main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import * as fs from "fs";

try {
// This rule has testcases, run the test
console.group(`+ ${testcase.testcaseTitle}: ${testcase.url}`);
console.group(`+ ${testcase.testcaseTitle}${testcase.approved ? "" : " [not approved]" }: ${testcase.url}`);
// Special handling for meta refresh
if (ext === ".html" || ext === ".xhtml") {
if (testcase.ruleId === "bisz58" || testcase.ruleId === "bc659a")
Expand Down
4 changes: 2 additions & 2 deletions accessibility-checker/test-act/main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import * as fs from "fs";
try {
// If no tests, don't bother loading the testcase
if (ruleTestInfo[ruleId].aceRules.length > 0) {
console.group(`+ ${testcase.testcaseTitle}: ${testcase.url}`);
console.group(`+ ${testcase.testcaseTitle}${testcase.approved ? "" : " [not approved]" }: ${testcase.url}`);
if (ext === ".html" || ext === ".xhtml") {
// Special handling for meta refresh
if (testcase.testcaseId === "cbf6409b0df0b3b6437ab3409af341587b144969"
Expand All @@ -58,7 +58,7 @@ import * as fs from "fs";
}
}
} else {
console.group(`? ${testcase.testcaseTitle}: ${testcase.url}`);
console.group(`? ${testcase.testcaseTitle}${testcase.approved ? "" : " [not approved]" }: ${testcase.url}`);
}
let { title, result, issuesFail, issuesPass, issuesReview, issuesAll } = await getResult(pupPage, testcase.testcaseId, ruleTestInfo[ruleId].aceRules, !(ext === ".html" || ext === ".htm"));
earlResult["@graph"].push({
Expand Down

0 comments on commit 4707675

Please sign in to comment.