angularjs - Unit Test vs. e2e Test vs. REST Test -
i building angularjs application fetches data rest resource. rest server has own e2e tests (http requests make changes in database real sample data) , in front-end using karma run unit tests in code.
with front-end unit testing can test controllers, directives, services... , think scenario. back-end doesn't need tested again in front-end tests.
templates , such things can unit tested using selectors , checking visibility, availability, or whatever need.
so angularjs e2e testing for? necessary if have back-end tested or missing something?
Comments
Post a Comment