49 lines
1.6 KiB
HTML
49 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>OpenPGPJS Unit Tests</title>
|
|
<link rel="stylesheet" href="lib/mocha.css" />
|
|
|
|
<!-- libs -->
|
|
<script>
|
|
if (window.location.search.includes('lightweight=')) {
|
|
document.write('<script src="../dist/lightweight/openpgp.js"><\/script>');
|
|
} else {
|
|
document.write('<script src="../dist/openpgp.js"><\/script>');
|
|
}
|
|
</script>
|
|
<script src="lib/mocha.js"></script>
|
|
<script>
|
|
mocha.setup('bdd');
|
|
mocha.timeout(240000);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
|
|
<script src="lib/unittests-bundle.js"></script>
|
|
<script>
|
|
if (typeof openpgp !== 'undefined') {
|
|
const runner = mocha.run();
|
|
var wasScrolledDown = true;
|
|
function beforeTestReport() {
|
|
wasScrolledDown = document.documentElement.scrollHeight - document.documentElement.scrollTop - document.documentElement.clientHeight < 50;
|
|
}
|
|
function afterTestReport() {
|
|
if (wasScrolledDown || openpgp.config.ci) {
|
|
window.scrollTo(0, document.documentElement.scrollHeight);
|
|
}
|
|
}
|
|
runner._events['suite'].unshift(beforeTestReport);
|
|
runner._events['pass'].unshift(beforeTestReport);
|
|
runner._events['fail'].unshift(beforeTestReport);
|
|
runner._events['pending'].unshift(beforeTestReport);
|
|
document.addEventListener('scroll', beforeTestReport);
|
|
runner.on('suite', afterTestReport);
|
|
runner.on('test end', afterTestReport);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|