github.com/derat/nup@v0.0.0-20230418113745-15592ba7c620/test/web/unit/index.html (about) 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>nup Unit Tests</title> 5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 6 7 <!-- https://stackoverflow.com/a/13416784/6882947 --> 8 <link rel="icon" href="data:;base64,iVBORw0KGgo=" /> 9 10 <!-- Load test.js first to catch errors from other files. --> 11 <script src="./test.js" type="module" defer></script> 12 <script type="module" defer> 13 import { runTests } from './test.js'; 14 // TODO: Is there a cleaner way to make an exported function from an ES6 15 // module callable via Selenium? 16 window.runTests = runTests; 17 </script> 18 19 <script src="./common.test.js" type="module" defer></script> 20 <script src="./config.test.js" type="module" defer></script> 21 <script src="./example.test.js" type="module" defer></script> 22 <script src="./song-table.test.js" type="module" defer></script> 23 <script src="./updater.test.js" type="module" defer></script> 24 </head> 25 <body></body> 26 </html>