Skip to content

Making End to End Tests

rjVapes edited this page Sep 11, 2015 · 3 revisions

End to End Testing

Also referred to as System Testing or E2E, allows you to test a fully integrated system or application. In this scope, E2E testing seeks to mimic user behavior and inspect the response presented through the web browser.

Protractor

Using Protractor it is possible to do E2E testing with Mean. It allows for direct browser manipulation through Selenium WebDriver, and is designed to integrate well with AngularJS based projects.

Requirements

  • Java - for running Selenium
  • Browser(s)
    • Chrome
    • FireFox
    • Others, though Chrome and FireFox are used by default

Writing Tests

Clone this wiki locally