Spaces:
Running
Running
Delete test-duplication-fix.html
Browse files- test-duplication-fix.html +0 -27
test-duplication-fix.html
DELETED
|
@@ -1,27 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<html lang="en">
|
| 3 |
-
<head>
|
| 4 |
-
<meta charset="UTF-8">
|
| 5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>Test Duplication Fix</title>
|
| 7 |
-
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
-
</head>
|
| 9 |
-
<body class="bg-gray-100 p-8">
|
| 10 |
-
<div class="max-w-4xl mx-auto">
|
| 11 |
-
<h1 class="text-2xl font-bold mb-4">Testing Answer Duplication Fix</h1>
|
| 12 |
-
|
| 13 |
-
<div id="app"></div>
|
| 14 |
-
</div>
|
| 15 |
-
|
| 16 |
-
<script type="module">
|
| 17 |
-
import ClozeGameEngine from './src/clozeGameEngine.js';
|
| 18 |
-
import ClozeGameUI from './src/app.js';
|
| 19 |
-
|
| 20 |
-
// Initialize the game
|
| 21 |
-
const game = new ClozeGameEngine();
|
| 22 |
-
const ui = new ClozeGameUI(game);
|
| 23 |
-
|
| 24 |
-
console.log('Game initialized. Try submitting answers multiple times to test for duplication.');
|
| 25 |
-
</script>
|
| 26 |
-
</body>
|
| 27 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|