[no-issue] clean e2e test PS (#3830)

* clean test PS

* add describe around filters

* semi column review

* remove comment
This commit is contained in:
Eugenio Romano
2018-09-27 11:58:50 +01:00
committed by GitHub
parent 0051e26159
commit bd2d102449
23 changed files with 708 additions and 715 deletions

View File

@@ -67,19 +67,19 @@ var TasksPage = function () {
return this;
};
this.usingFormFields = function () {
this.formFields = function () {
return new FormFields();
};
this.usingTaskDetails = function () {
this.taskDetails = function () {
return new TaskDetails();
};
this.usingFiltersPage = function () {
this.filtersPage = function () {
return new FiltersPage();
};
this.usingTasksListPage = function () {
this.tasksListPage = function () {
return new TasksListPage();
};