github.com/hernad/nomad@v1.6.112/ui/tests/index.html (about)

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