I am afraid someone close my question but I couldn\'t find a satisfying question (maybe because I am very limited in Angular 2+ world and I understood something wrong).
You are on the good road to understand all of it.
You are using the jasmine framework to write your tests and define them as suites and expect results that you can test, but the main thing is that you are actually using the karma launcher to execute tests directly on the browser. This is normaly configured in the angular app.
This means there is one server running the tests and that's it. You test with your own values and check that your components are working correctly.
The aim is to check for single components (unit test) or several modules / components (integration tests) that a single function / small workflow is working correctly as intended without side effects.
Protractor is an end-to-end test framework for Angular and AngularJS applications. Protractor runs tests against your application running in a real browser, interacting with it as a user would.
Here, the tests you have written will act as a user. This means there is your application running in your browser, and another program will run the tests against your application, simulating a user interaction.
This is very important, because that means two things :
The aim with protractor is to validate a full operationnal workflow in your application. For example, I'll write my unit test for my login component, write an unit test for my login service, write an integration test for my whole module and whatever behavior I need to test that depends on several components / services. Once this is done, I'll write later a full end-to-end test that will validate my whole authentication process in my application.
Bear in mind, there is a ratio that is important about testing which is very logical :
Why is that ? Because if you did unit test correctly a lot of your components, you won't need to test that again in your End-to-End tests.
Conclusion :
N.B. : Be also aware of those points :
Hope this helps.