38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<head>
|
|
<title>Availability test</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="https://unpkg.com/mocha/mocha.css" />
|
|
<link type="text/css" rel="stylesheet" href="../index.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<h2><a href="../">DGF Tests</a></h2>
|
|
<div id="mocha"></div>
|
|
<div id="scene"></div>
|
|
</body>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/radash/10.7.0/radash.js"
|
|
integrity="sha512-S207zKWG3iqXqe6msO7/Mr8X3DzzF4u8meFlokHjGtBPTGUhgzVo0lpcqEy0GoiMUdcoct+H+SqzoLsxXbynzg=="
|
|
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/10.2.0/mocha.min.js"
|
|
integrity="sha512-jsP/sG70bnt0xNVJt+k9NxQqGYvRrLzWhI+46SSf7oNJeCwdzZlBvoyrAN0zhtVyolGcHNh/9fEgZppG2pH+eA=="
|
|
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.3.7/chai.min.js"
|
|
integrity="sha512-Pwgr3yHn4Gvztp1GKl0ihhAWLZfqgp4/SbMt4HKW7AymuTQODMCNPE7v1uGapTeOoQQ5Hoz367b4seKpx6j7Zg=="
|
|
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
|
<script type="module" src="./scripts/availability.test.js"></script>
|
|
<script defer class="mocha-init">
|
|
mocha.setup({
|
|
ui: 'bdd',
|
|
globals: ['scene', 'dao', 'experts', 'requestor', '__REACT_DEVTOOLS_*'],
|
|
});
|
|
mocha.checkLeaks();
|
|
window.should = chai.should();
|
|
</script>
|
|
<script defer class="mocha-exec">
|
|
// TODO: Weird race condition -- resolve this in a better way
|
|
setTimeout(() => mocha.run(), 1000);
|
|
</script>
|