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.

60 lines
2.3 KiB

#### Functional
##### Open the documentation file.
###### Is the documentation written in a markdown file?
###### Does the documentation contains an explanation of every feature of the framework?
###### Does the documentation contains an explanation and code examples on how to create an element, add attributes to an element, create an event and nest elements?
###### Does the documentation contains an explanation on how the framework works?
4 years ago
##### Open the todoMVC project and compare it to other [todoMVC project](http://todomvc.com/) ([example](http://todomvc.com/examples/vanillajs/)).
4 years ago
###### Does it contain every element as the other todoMVCs examples?
4 years ago
##### Open the Web Developer Tools (Ctrl+Shift+I) and check for the classes, ids, etc.
4 years ago
###### Does it correctly correspond to those in the examples?
4 years ago
###### Can you add a todo element to the todo list?
4 years ago
###### When you add a todo element to the list, does the footer (element with class footer) appear as in other examples?
4 years ago
###### Can you check/uncheck a todo element on the list?
4 years ago
###### Can you remove a todo element off the list?
4 years ago
##### Add at least 2 todos and select only one of them.
4 years ago
###### If you click on the **Active** button, does it appear only the unchecked todos?
4 years ago
###### And if you click on the **Completed** button, does it appear only the checked todos?
###### Does it appear a **Clear Completed** button todos?
###### When clicking on the clear completed button, does it remove only the checked todos?
###### When clicking on the **Active** and **Completed** buttons, does the URL change?
##### Add 3 todos to the list and check each one, keeping an eye on the counter of todos left to do.
###### Does the counter change accordingly to your actions?
###### If you double click a todo element on the list can you edit that element?
#### Bonus
4 years ago
###### +Is the performance similar both in the student todoMVC and other examples?
###### +Is it easier to handle the DOM using the framework than it is to use plain HTML and JS?
###### +Is it easier to handle the routing in JS using the framework?
###### +Does the project runs quickly and effectively? (Favoring recursive, no unnecessary data requests, etc)
###### +Is the code using synchronicity to increase performance?
###### +Do you think in general this project is well done?