github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/ui/tests/index.html (about) 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8" /> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 6 <title>Nomad UI Tests</title> 7 <meta name="description" content="" /> 8 <meta name="viewport" content="width=device-width, initial-scale=1" /> 9 10 {{content-for "head"}} 11 {{content-for "test-head"}} 12 13 <link rel="stylesheet" href="{{ rootURL }}assets/vendor.css" /> 14 <link rel="stylesheet" href="{{ rootURL }}assets/nomad-ui.css" /> 15 <link rel="stylesheet" href="{{ rootURL }}assets/test-support.css" /> 16 17 {{content-for "head-footer"}} 18 {{content-for "test-head-footer"}} 19 </head> 20 <body> 21 {{content-for "body"}} 22 {{content-for "test-body"}} 23 24 <script> 25 // Spoof a lack of ReadableStream support to use XHRs instead of Fetch 26 window.__ReadableStream = window.ReadableStream; 27 window.ReadableStream = undefined; 28 </script> 29 <div id="qunit"></div> 30 <div id="qunit-fixture"> 31 <div id="ember-testing-container"> 32 <div id="ember-testing"></div> 33 </div> 34 </div> 35 36 <script src="/testem.js" integrity="" data-embroider-ignore></script> 37 <script src="{{ rootURL }}assets/vendor.js"></script> 38 <script src="{{ rootURL }}assets/test-support.js"></script> 39 <script src="{{ rootURL }}assets/nomad-ui.js"></script> 40 <script src="{{ rootURL }}assets/tests.js"></script> 41 42 {{content-for "body-footer"}} 43 {{content-for "test-body-footer"}} 44 </body> 45 </html>