Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mousetrap.html « tests « mousetrap « node_modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9cf84d6e8aee5ba760fbed77c821afdab1553726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<head>
    <meta charset="utf-8">
    <title>Mousetrap Tests</title>
    <link rel="stylesheet" href="../node_modules/mocha/mocha.css">
</head>
<body>
    <div id="mocha"></div>

    <script src="../node_modules/chai/chai.js"></script>
    <script src="../node_modules/sinon/pkg/sinon.js"></script>
    <script src="../node_modules/mocha/mocha.js"></script>
    <script src="../mousetrap.js"></script>
    <script src="libs/key-event.js"></script>

    <script>mocha.setup('bdd')</script>
    <script src="test.mousetrap.js"></script>

    <script>
        mocha.checkLeaks();
        mocha.globals(['Mousetrap']);
        mocha.run();
    </script>
</body>