43 lines
999 B
HTML
43 lines
999 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Watterblock Tests</title>
|
|
<link rel="stylesheet" href="/vendored/qunit-2.25.0.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
<script src="/vendored/qunit-2.25.0.js"></script>
|
|
|
|
<script type="module">
|
|
"use strict";
|
|
|
|
import round from "/models/round.test.js";
|
|
import roundResult from "/models/round_result.test.js";
|
|
import gameRules from "/models/game_rules.test.js";
|
|
import game from "/models/game.test.js";
|
|
import session from "/models/session.test.js";
|
|
|
|
import db from "/data/db.test.js";
|
|
import session_repo from "/data/session_repo.test.js";
|
|
|
|
QUnit.module("models", function () {
|
|
round();
|
|
roundResult();
|
|
gameRules();
|
|
game();
|
|
session();
|
|
});
|
|
|
|
QUnit.module("data", function () {
|
|
db();
|
|
session_repo();
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |