You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now, you can just open your *Visual Studio Code* and click on `Go Live`if you have the `Live Server` extension installed properly. If it requires to select a folder to set as origin, make sure you choose `Dist` folder.
69
73
70
-
### Overview
74
+
## Testing
75
+
76
+
After doing the `npm install`, all the the webpack depencies will be installed and with it will come the Jest Library.<br>
77
+
The test forthis project is only applicable to functions that are not related to Phaser Framework, which leaves us with the task of testing the API connection only.<br>
78
+
Running the tests requires a simple use of the npm script, which triggers the Jest tool:
79
+
```js
80
+
npm test
81
+
```
82
+
83
+
84
+
### Game Overview
71
85
The goal of the game is to kill as much dragons as possible while playing this Turn Based Role Playing Game. It starts with two heroes against 4 types of dragons.<br>
72
86
The heroes are the Warrior (HP:130ATK:12) and the Mage(HP:80ATK:22). The dragons follows the same 'rule': the more the hp status, the less the damage inflicted.<br>
73
87
Once you encounter the enemies, the two enemy dragons will be randomly generated. Each Dragon defeated counts as +10 on your score!<br>
0 commit comments