Skip to content

Commit a40f839

Browse files
committed
Restore the testRunnerHtml function in web-test-runner.config.mjs to enable custom HTML output for test runners.
1 parent 8c8e1dc commit a40f839

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

web-test-runner.config.mjs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ export default {
99
return next();
1010
}
1111
],
12-
// testRunnerHtml: (testFramework) =>
13-
// `<html>
14-
// <body>
15-
// <script type="module" src="${testFramework}"></script>
16-
// </body>
17-
// </html>`
12+
testRunnerHtml: (testFramework) =>
13+
`<html>
14+
<body>
15+
<script type="module" src="${testFramework}"></script>
16+
</body>
17+
</html>`
1818
};

0 commit comments

Comments
 (0)