Files
Phraseanet/www/scripts/tests/index.html
Nicolas Le Goff 1ff4e4060b Add field application
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
2013-05-27 23:26:05 +02:00

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>