8f3d83e5f0
-- * Key.js: Error code for wrong parameter in createKey should be "PARAM_WRONG" * Helpers.js: The property openpgpjs-like Objects were checked for in toKeyIdArray was not defined. * src/permittedOperations.js: updated more expectations and assumptions for the native API * new Problems: - There seems to be a message size limit of about 21 MB for nativeMessaging, much lower than the documented 4GB. - Some bytes are lost with random data in an encrypt-decrypt roundtrip. The culprit is unclear.
27 lines
773 B
HTML
27 lines
773 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link href="libs/mocha.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<h3>Browsertest</h3>
|
|
<div id="mocha"></div>
|
|
<!-- load unit tests -->
|
|
<script src="libs/mocha.js"></script>
|
|
<script src="libs/chai.js"></script>
|
|
<script src="setup_testing.js"></script>
|
|
<script src="libs/gpgmejs.bundle.js"></script>
|
|
|
|
<script src="tests/inputvalues.js"></script>
|
|
<script src="libs/gpgmejs_unittests.bundle.js"></script>
|
|
<!-- insert tests here-->
|
|
<script src="tests/startup.js"></script>
|
|
<script src="tests/encryptTest.js"></script>
|
|
<script src="tests/encryptDecryptTest.js"></script>
|
|
|
|
<!-- run tests -->
|
|
<script src="runbrowsertest.js"></script>
|
|
</body>
|
|
</html>
|