SierraSystems/ntt-data-notification-service

View on GitHub
src/main/resources/public/testrunner.html

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html>
    <head>
        <title>Mocha Tests</title>
        <link rel="stylesheet" href="node_modules/mocha/mocha.css">
    </head>
    <body>
        <h1>NTT Data Notification Service Frontend Unit Tests</h1>
        <div id="mocha"></div>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
        <script src="node_modules/mocha/mocha.js"></script>
        <script src="node_modules/chai/chai.js"></script>
        <script>mocha.setup('bdd')</script>

        <!-- load code you want to test here -->
        <script src="index.js"></script>

        <!-- load your test files here -->
        <script src="index.test.js"></script>

        <script>
        mocha.run();
        </script>
    </body>
</html>