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
Hi. First let me say, WOW. This is an awesome guide that gives clear examples for pretty much all things you could do in unit testing for AngularJS.
At my current job we are also using what we call "acceptance tests". These use protractor, but in the protractor.conf file for framework we choose 'protractor-cucumber-framework'. They are executed through the command line like any other protractor.conf.js file. This will allow you to write .feature files in Gherkin language and then implement them in low-level step definition methods. These tests are not really e2e tests that touch external things but are more just your standard selenium web tests that check basic operational functionality in the application.
So you might consider adding that to your list of tests since it is a difference type of automating testing and is really awesome and useful in itself.
The text was updated successfully, but these errors were encountered:
Hi. First let me say, WOW. This is an awesome guide that gives clear examples for pretty much all things you could do in unit testing for AngularJS.
At my current job we are also using what we call "acceptance tests". These use protractor, but in the protractor.conf file for framework we choose 'protractor-cucumber-framework'. They are executed through the command line like any other protractor.conf.js file. This will allow you to write .feature files in Gherkin language and then implement them in low-level step definition methods. These tests are not really e2e tests that touch external things but are more just your standard selenium web tests that check basic operational functionality in the application.
So you might consider adding that to your list of tests since it is a difference type of automating testing and is really awesome and useful in itself.
The text was updated successfully, but these errors were encountered: