mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-12 23:09:03 +01:00
26 lines
795 B
HTML
26 lines
795 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset=utf-8 />
|
|
<title>messageformat.js Test Suite</title>
|
|
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
|
|
<script src="jquery.min.js"></script>
|
|
<script src="../node_modules/mocha/mocha.js"></script>
|
|
<script src="../node_modules/expect.js/expect.js"></script>
|
|
<script>mocha.setup('bdd')</script>
|
|
<script src="../lib/message_parser.js"></script>
|
|
<script src="../messageformat.js"></script>
|
|
<script src="../locale/cy.js"></script>
|
|
<script src="../test/tests.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>messageformat.js Test Suite</h1>
|
|
<div id="mocha"></div>
|
|
<script>
|
|
window.onload = function () {
|
|
mocha.run().globals(['MessageFormat']);
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|