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
Copy file name to clipboardExpand all lines: README.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,8 +26,6 @@ Inside it's scope use ```npm install``` to install all dependencies and ```npm s
26
26
> - Be sure that the database is working before starting the server.
27
27
> - All the database connections you need (for each environment) are in ```/server/config/database.json```.
28
28
29
-
The Passport implementation uses
30
-
31
29
#### Client-Side
32
30
In the ```/client/``` folder we have the client-side React application.
33
31
@@ -40,11 +38,11 @@ The UI is fully made using [Semantic UI](https://semantic-ui.com/) - decided tha
40
38
#### TDD + BDD
41
39
We have some tests too to be sure that our client and server-side API are working succesfully.
42
40
43
-
There some tests I wrote in Mocha + Chai, disposed in ```/server/test/```.
41
+
I have writen some tests in API side using [Mocha](https://mochajs.org/) and [Chai](http://www.chaijs.com/), disposed in ```/server/test/```.
44
42
45
-
Mocha is used to build the tests and Chai to configure the asserts (TDD) and the behaviours (BDD) to improve the test accuracy against the way we can use the API and also the way we should take care about errors. This way we know it's OK for every case.
43
+
Mocha is used to build tests and Chai to configure the asserts (TDD) and the behaviours (BDD) to improve test accuracy against the way we can use the API and also the way we should take care about errors. This way we know it's OK for every situation.
46
44
47
-
You can run all tests entering the server folder in terminal and just typing: ```npm run test``` - It's configured to run and compile with Babel (ES6) in then server "package.json".
45
+
You can run all tests entering the server folder in terminal and just typing: ```npm run test``` - It's configured to run and compile with **Babel (ES6)** in then server "package.json".
0 commit comments