mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-24 10:28:03 +01:00
Support for the PLAINTEXT message type is not present in the latest protobuf definitions. Leaving it out for now since we don't have any use case for it currently.
58 lines
2.6 KiB
HTML
58 lines
2.6 KiB
HTML
<!--This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<title>libTextSecure test runner</title>
|
|
<link rel="stylesheet" href="../../components/mocha/mocha.css" />
|
|
</head>
|
|
<body>
|
|
<h2>Run this out of the chrome-plugin:// namespace (and expect plugin state to be cleared/corrupted), not file://</h2>
|
|
|
|
<div id="mocha">
|
|
</div>
|
|
<div id="tests">
|
|
</div>
|
|
|
|
<script type="text/javascript" src="test.js"></script>
|
|
<script type="text/javascript" src="blanket_mocha.js"></script>
|
|
<script type="text/javascript" src="in_memory_axolotl_store.js"></script>
|
|
|
|
<script type="text/javascript" src="../components.js"></script>
|
|
<script type="text/javascript" src="../crypto.js"></script>
|
|
<script type="text/javascript" src="../protobufs.js" data-cover></script>
|
|
<script type="text/javascript" src="../errors.js" data-cover></script>
|
|
<script type="text/javascript" src="../storage.js" data-cover></script>
|
|
<script type="text/javascript" src="../libaxolotl.js"></script>
|
|
<script type="text/javascript" src="../axolotl_wrapper.js" data-cover></script>
|
|
|
|
<script type="text/javascript" src="../websocket.js" data-cover></script>
|
|
<script type="text/javascript" src="../websocket-resources.js" data-cover></script>
|
|
<script type="text/javascript" src="../helpers.js" data-cover></script>
|
|
<script type="text/javascript" src="../stringview.js" data-cover></script>
|
|
<script type="text/javascript" src="../storage/devices.js" data-cover></script>
|
|
<script type="text/javascript" src="../api.js"></script>
|
|
<script type="text/javascript" src="../sendmessage.js" data-cover></script>
|
|
<script type="text/javascript" src="../account_manager.js" data-></script>
|
|
|
|
<script type="text/javascript" src="fake_api.js"></script>
|
|
<script type="text/javascript" src="helpers_test.js"></script>
|
|
<script type="text/javascript" src="websocket-resources_test.js"></script>
|
|
<script type="text/javascript" src="storage_test.js"></script>
|
|
<script type="text/javascript" src="generate_keys_test.js"></script>
|
|
<script type="text/javascript" src="websocket_test.js"></script>
|
|
</body>
|
|
</html>
|