File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,8 @@ For example to expose the global `process` variable:
221221``` js
222222export default {
223223 testRunnerHtml : testFramework =>
224- ` <html>
224+ ` <!DOCTYPE html>
225+ <html>
225226 <body>
226227 <script>window.process = { env: { NODE_ENV: "development" } }</script>
227228 <script type="module" src="${ testFramework} "></script>
@@ -322,7 +323,8 @@ export default {
322323 {
323324 name: ' polyfills-a' ,
324325 testRunnerHtml : testFramework =>
325- ` <html>
326+ ` <!DOCTYPE html>
327+ <html>
326328 <body>
327329 <script src="./polyfills-a.js"></script>
328330 <script type="module" src="${ testFramework} "></script>
@@ -332,7 +334,8 @@ export default {
332334 {
333335 name: ' polyfills-b' ,
334336 testRunnerHtml : testFramework =>
335- ` <html>
337+ ` <!DOCTYPE html>
338+ <html>
336339 <body>
337340 <script src="./polyfills-b.js"></script>
338341 <script type="module" src="${ testFramework} "></script>
You can’t perform that action at this time.
0 commit comments