987b317468
-- * Added openpgp - Mode tests to the browsertest Extension. These tests require openpgp, which should not be a hard dependency for the main project. Packing openpgpjs into the extension is still TODO * Fixes: - openpgp mode API now correctly handles parameters as an object, similar to openpgpjs - proper check and parsing of openpgpjs Message Objects
24 lines
726 B
HTML
24 lines
726 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link href="libs/mocha.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<h3>Openpgp mode test</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="libs/openpgp.min.js"></script>
|
|
<script src="tests/inputvalues.js"></script>
|
|
<script src="tests/inputValues_openpgpjs.js"></script>
|
|
<!-- insert tests here-->
|
|
<script src="tests/openpgpModeTest.js"></script>
|
|
<!-- run tests -->
|
|
<script src="runbrowsertest.js"></script>
|
|
</body>
|
|
</html>
|