
This is the initial check in of the dashboard UI. Change-Id: I5621896191f3664ed504b38e7cdc405c422c76fd
26 lines
612 B
HTML
26 lines
612 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Tests</title>
|
|
<link rel="stylesheet" href="assets/mocha.css"/>
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script src="../vendor/require/require.js"></script>
|
|
<script src="../app/components/require.config.js"></script>
|
|
<script src="assets/mocha.js"></script>
|
|
<script src="assets/expect.js"></script>
|
|
<script>
|
|
|
|
/*globals mocha */
|
|
mocha.setup('bdd');
|
|
|
|
require([
|
|
'../specs/lexer-specs',
|
|
'../specs/parser-specs',
|
|
], function () {
|
|
mocha.run();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |