33 lines
366 B
Markdown
33 lines
366 B
Markdown
# Taiga e2e tests #
|
|
|
|
### Setup ###
|
|
|
|
```
|
|
npm install
|
|
npm install -g protractor
|
|
npm install -g mocha
|
|
npm install -g babel
|
|
|
|
webdriver-manager update
|
|
```
|
|
|
|
### Usage ###
|
|
|
|
After taiga-back and taiga-front are running
|
|
|
|
```
|
|
webdriver-manager start
|
|
```
|
|
|
|
for auth test:
|
|
|
|
```
|
|
protractor conf.e2e.js --suite=auth
|
|
```
|
|
|
|
For full tests
|
|
|
|
```
|
|
protractor conf.e2e.js --suite=full
|
|
```
|