mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 12:33:26 +00:00

Add asset dependencies Add field model Add field tests Add field app Add JS build Add end file blank line Adjust asset dependencies version Remove assets test libraries from build Remove unecessary comments Add end file blank line Fix indent
23 lines
701 B
HTML
23 lines
701 B
HTML
<!doctype html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>Mocha Spec Runner</title>
|
|
<link rel="stylesheet" href="../../assets/mocha/mocha.css">
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script src="../../assets/mocha/mocha.js"></script>
|
|
<script src="../../assets/chai/chai.js"></script>
|
|
<script>
|
|
window.expect = chai.expect;
|
|
window.assert = chai.assert;
|
|
</script>
|
|
<script src="../../assets/requirejs/require.js"></script>
|
|
<script src="../../scripts/tests/main.js"></script>
|
|
<script>
|
|
require(['tests/baseTest', 'specs/admin/fields'], runMocha);
|
|
</script>
|
|
</body>
|
|
</html>
|