-
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(tests): add Cypress E2E tests to Bootstrap Tabs Example (#698)
* feat(tests): add Cypress E2E tests to Bootstrap Tabs Example * tests: add Cypress E2E testing for Example 13 Custom Backend Pagination
- Loading branch information
1 parent
aa78e76
commit b8d1d14
Showing
7 changed files
with
349 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
<div class="container" style="margin-top: 10px"> | ||
<div class="col-sm-8"> | ||
<div class="alert alert-info"> | ||
<strong>Custom Pagination URL:</strong> | ||
<div [innerHTML]="currentUrl"></div> | ||
</div> | ||
</div> | ||
<swt-common-grid-pagination #commonGridPag1></swt-common-grid-pagination> | ||
<swt-common-grid #commonGrid1 | ||
(onFilterChanged)="filterChanged($event)" | ||
(onPaginationChanged)="paginationChanged($event)" | ||
(onSortChanged)="sortChanged($event)"></swt-common-grid> | ||
<div class="container-fluid" style="margin-top: 10px"> | ||
<h2 [innerHTML]="title"></h2> | ||
<div class="subtitle" [innerHTML]="subTitle"></div> | ||
|
||
<div class="col-sm-8"> | ||
<div class="alert alert-info"> | ||
<strong>Custom Pagination URL:</strong> | ||
<div data-test="query-string" [innerHTML]="currentUrl"></div> | ||
</div> | ||
</div> | ||
<swt-common-grid-pagination #commonGridPag1></swt-common-grid-pagination> | ||
<swt-common-grid #commonGrid1 | ||
(onFilterChanged)="filterChanged($event)" | ||
(onPaginationChanged)="paginationChanged($event)" | ||
(onSortChanged)="sortChanged($event)"></swt-common-grid> | ||
</div> |
Oops, something went wrong.