2014-07-03 18:36:43 +02:00
|
|
|
<!DOCTYPE html>
|
2015-07-15 17:36:17 +02:00
|
|
|
<!--
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
2014-07-03 18:36:43 +02:00
|
|
|
<html>
|
|
|
|
<head lang="en">
|
|
|
|
<meta charset="UTF-8">
|
2015-01-18 21:36:55 +01:00
|
|
|
<title>Test bärneruhr.ch</title>
|
2014-07-04 01:08:39 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/mocha.css"/>
|
2019-05-08 03:18:13 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="../dist/assets/uhr.css"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../dist/assets/uhr-black.css" data-class="black"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../dist/assets/uhr-red.css" data-class="red"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../dist/assets/uhr-pink.css" data-class="pink"/>
|
2014-07-03 18:36:43 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2014-07-04 21:51:39 +02:00
|
|
|
<div id="u"></div>
|
2015-01-16 17:50:23 +01:00
|
|
|
<div id="mocha"></div>
|
|
|
|
<script type="text/javascript" src="lib/mocha.js"></script>
|
|
|
|
<script type="text/javascript" src="lib/chai.js"></script>
|
2019-05-08 03:18:13 +02:00
|
|
|
<script
|
|
|
|
src="https://code.jquery.com/jquery-3.4.1.js"
|
|
|
|
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
|
|
|
|
crossorigin="anonymous"></script>
|
|
|
|
<script
|
|
|
|
src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"
|
|
|
|
integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30="
|
|
|
|
crossorigin="anonymous"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js"></script>
|
|
|
|
<script type="text/javascript" src="../dist/lib/uhr.bundle.js"></script>
|
2015-01-16 17:50:23 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
mocha.setup('tdd');
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript" src="test.js"></script>
|
|
|
|
<script type="text/javascript">
|
2015-01-18 21:36:55 +01:00
|
|
|
// mocha.checkLeaks();
|
|
|
|
// mocha.globals(['jQuery*']);
|
2015-01-16 17:50:23 +01:00
|
|
|
if (window.mochaPhantomJS) {
|
|
|
|
mochaPhantomJS.run();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mocha.run();
|
|
|
|
}
|
2014-07-03 18:36:43 +02:00
|
|
|
</script>
|
|
|
|
</body>
|
2015-01-12 18:49:30 +01:00
|
|
|
</html>
|