You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.2 KiB

4 years ago
#### Functional
##### Play and finish the game
###### Does the scoreboard appear?
##### Play and finish the game
###### Does it asks for a name?
##### Try making a GET request to the GO server API
###### Does the request present the right information?
##### Try making a POST request to the GO server API, then make a GET request to see if the information posted is correct
###### Is it correct?
###### Does the scoreboard have the properties position, Name and score?
###### Is the scoreboard in descending scores order?
###### Does the scoreboard have pagination?
##### Try to see the next page
###### Does it display the next page of scores?
##### Play and finish the game, then search for your name
###### Does the scoreboard present your name and all the right information?
##### Try using the Dev Tool/Performance
###### Does it not present frame drop?
##### Try using the Dev Tool/Performance
###### Does the game run at or around 60fps
#### Bonus
###### +Does the project runs quickly and effectively? (Favoring recursive, no unnecessary data requests, etc)
###### +Does the code obey the [good practices](https://public.01-edu.org/subjects/good-practices/README.md)?
###### +Is the code using synchronicity to increase performance?