PHPMailer6
auswertung
bootstrap
data-table
dist
node_modules
@popperjs
after-transition
bootstrap
bootstrap-icons
component-emitter
component-query
css-ease
css-emitter-component
event-component
has-transitions
test
index.html
mocha.css
mocha.js
tests.js
.npmignore
History.md
Makefile
Readme.md
component.json
index.js
package.json
has-translate3d
move-js
scrolling-tabs-bootstrap-5
transform-property
.package-lock.json
index.html
classes
config
controller
dashboard
datepicker
jquery
js
language
lib
media
selfregistration
sql
survey
templates
test
tinymce
.gitignore
Hinweise_zu_php8.txt
config.inc.php
todo.txt
27 lines
692 B
HTML
27 lines
692 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Mocha</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="mocha.css" />
|
|
</head>
|
|
<body>
|
|
<style>
|
|
.transition {
|
|
-webkit-transition: all 1s linear;
|
|
-moz-transition: all 1s linear;
|
|
transition: all 1s linear;
|
|
}
|
|
</style>
|
|
<div id="mocha"></div>
|
|
<script src="../build/build.js"></script>
|
|
<script src="mocha.js"></script>
|
|
<script>mocha.setup('bdd')</script>
|
|
<script src="tests.js"></script>
|
|
<script>
|
|
mocha.run();
|
|
</script>
|
|
</body>
|
|
</html>
|