32 lines
688 B
HTML
32 lines
688 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>OpenPGPJS Unit Tests</title>
|
|
<link rel="stylesheet" href="lib/mocha.css" />
|
|
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
|
|
<!-- polyfills -->
|
|
<script src="lib/promise-1.0.0.js"></script>
|
|
|
|
<!-- libs -->
|
|
<script src="../dist/openpgp.js"></script>
|
|
<script src="lib/chai.js"></script>
|
|
<script src="lib/mocha.js"></script>
|
|
<script>
|
|
mocha.setup('bdd');
|
|
</script>
|
|
<script src="lib/unittests-bundle.js"></script>
|
|
<script>
|
|
if (window.mochaPhantomJS) {
|
|
mochaPhantomJS.run();
|
|
} else {
|
|
mocha.run();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|