We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 458fba3 commit 880bc0dCopy full SHA for 880bc0d
packages/cypress-internal/src/acc_report/index
@@ -37,7 +37,7 @@
37
38
<body>
39
40
- <h1>Cypress Test Report</h1>
+ <h1>Cypress Accessibility Test Report</h1>
41
42
<div>
43
<ul id="test-report">
packages/cypress-internal/src/acc_report/task.ts
@@ -61,10 +61,10 @@ const reset = (testFile: string) => {
61
62
const prepare = () => {
63
const indexTemplate = readFileSync(path.join(__dirname, "index"), { encoding: "utf-8" });
64
- writeFileSync(outputPathIndex, indexTemplate);
65
-
66
saveReportFile([]);
67
+ // Add log visualizer page.
+ writeFileSync(outputPathIndex, indexTemplate);
68
}
69
70
function accTask(on: Cypress.PluginEvents, config: Cypress.PluginConfigOptions) {
0 commit comments