In this assessment you have 1 hour to complete the following task:
- Add jasmine and karma to the project so that you can run successful test
- Create a service that has a public function called wuTangIs(), that returns a string with the value "For the Children".
- Successfully write a unit test for wuTangIs()
- In the same service have a public funtion called myFavoriteBand(), that calls a http get endpoint which will return a string.
- Successfully write a unit test for myFavoriteBand(), mocking out the http call.
- In the same service have a public funtion called newBandILIke(value) , that accepts a String as a parameter, and calls a post endpoint.
- Succesfully write a unit test for newBandILIke(value) and mock out the http call.