Skip to content

End to end Testing Guide

lhcramer edited this page Feb 1, 2018 · 1 revision

With E2ET we can test user-exposed functionality as experienced by the user. We can test for correct behavior by simulating a user's interaction with the browser.

Follow this guide to setup and run End-to-end Tests (E2ET).

Requirements

This guide assumes you are using a Linux/Unix terminal and the following commands are available:

python npm

Installing Protractor

For running our E2ET we use Protractor a powerful E2E Angular JS testing framework. To install protractor globally run:

npm install -g protractor

Clone this wiki locally