File: testRunner.html

package info (click to toggle)
node-esquery 1.4.2~ds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 372 kB
  • sloc: javascript: 2,041; makefile: 28; sh: 1
file content (38 lines) | stat: -rw-r--r-- 1,104 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
    <head>
        <title>Test Runner</title>
        <meta charset="utf-8" />
        <style>
            html, body, #graphicalLogger {
                padding: 0;
                margin: 0;
                outline: 0;
                border: 0;
                width: 100%;
                height: 100%;
            }
        </style>
        <link rel="stylesheet" href="node_modules/jstestr/jstestr/logger/graphicalLogger.css" />
    </head>
    <body>
        <div id="graphicalLogger"></div>

        <script src="node_modules/jstestr/requirejs/require.js"></script>
        <script>
            require({
                baseUrl: ".",
                packages: [{
                    name: "jstestr",
                    location: "node_modules/jstestr/jstestr"
                }]
            }, [
                "jstestr/logger/browserLoggers",
                "jstestr/runner/browserRunner"
            ], function (browserLoggers, browserRunner) {
                browserLoggers();
                browserRunner();
            });
        </script>
    </body>
</html>