diff options
Diffstat (limited to 'src/tests/index.html')
-rw-r--r-- | src/tests/index.html | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/src/tests/index.html b/src/tests/index.html new file mode 100644 index 0000000..3adc2ec --- /dev/null +++ b/src/tests/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<!-- + - This file is part of Privacy Badger <https://www.eff.org/privacybadger> + - Copyright (C) 2014 Electronic Frontier Foundation + - + - Derived from Adblock Plus + - Copyright (C) 2006-2013 Eyeo GmbH + - + - Privacy Badger is free software: you can redistribute it and/or modify + - it under the terms of the GNU General Public License version 3 as + - published by the Free Software Foundation. + - + - Privacy Badger 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 General Public License for more details. + - + - You should have received a copy of the GNU General Public License + - along with Privacy Badger. If not, see <http://www.gnu.org/licenses/>. + --> + +<html> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width"> + + <title>Privacy Badger unit tests</title> + + <link rel="stylesheet" href="lib/vendor/qunit-2.9.2.css"/> + </head> + <body> + <div id="qunit"></div> + <div id="qunit-fixture"></div> + + <script src="../lib/vendor/jquery-3.5.1.js"></script> + <script src="../lib/vendor/underscore-1.9.1.js"></script> + + <script src="lib/vendor/qunit-2.9.2.js"></script> + <script src="lib/qunit_config.js"></script> + <script src="lib/vendor/sinon-2.0.0.js"></script> + + <script src="../js/bootstrap.js"></script> + <script src="../data/surrogates.js"></script> + <script src="../js/surrogates.js"></script> + <script src="../js/multiDomainFirstParties.js"></script> + <script src="../js/storage.js"></script> + <script src="../js/utils.js"></script> + <script src="../js/constants.js"></script> + <script src="../js/incognito.js"></script> + <script src="../js/heuristicblocking.js"></script> + + <script src="../lib/publicSuffixList.js"></script> + <script src="../lib/vendor/punycode-1.4.1.js"></script> + <script src="../lib/basedomain.js"></script> + + <script src="../lib/options.js"></script> + <script src="../js/socialwidgetloader.js"></script> + <script src="../js/htmlutils.js"></script> + <script src="../js/migrations.js"></script> + <script src="../js/firefoxandroid.js"></script> + <script src="../js/webrequest.js"></script> + <script src="../js/background.js"></script> + + <script src="tests/background.js"></script> + <script src="tests/firstparties.js"></script> + <script src="tests/heuristic.js"></script> + <script src="tests/htmlutils.js"></script> + <script src="tests/multiDomainFirstParties.js"></script> + <script src="tests/options.js"></script> + <script src="tests/storage.js"></script> + <script src="tests/tabData.js"></script> + <!-- URL/host tools: --><script src="tests/baseDomain.js"></script> + <script src="tests/utils.js"></script> + <script src="tests/yellowlist.js"></script> + </body> +</html> |