Files
openpgpjs/test/unittests.html
Daniel Huigens db9531df0f Tests: Bump mocha timeout for browser tests (#1941)
The Argon2 memory-heavy test takes longer in Firefox.

Follow up fix to:
- 04c59a297a
- 4aad1d1e34
2025-12-03 11:48:13 +01:00

42 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>OpenPGPJS Unit Tests</title>
<link rel="stylesheet" href="../node_modules/mocha/mocha.css">
</head>
<body>
<div id="mocha"></div>
<script type="module">
import { mocha, sessionFinished, sessionFailed } from '@web/test-runner-mocha';
try {
// setup mocha
mocha.setup({
ui: 'bdd',
timeout: 60000
});
// Safari 14 does not support top-level await
import('./lib/unittests-bundle.js')
.then(() => {
// run the tests, and notify the test runner after finishing
mocha.run(() => {
sessionFinished();
});
})
.catch(err => {
console.error(err);
// notify the test runner about errors
sessionFailed(err);
});
} catch (error) {
console.error(error);
// notify the test runner about errors
sessionFailed(error);
}
</script>
</body>
</html>