-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Update NPS Value Survey (#9638)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <[email protected]> Co-authored-by: Tomi Turtiainen <[email protected]>
- Loading branch information
1 parent
aaa7843
commit 50bd5b9
Showing
58 changed files
with
1,416 additions
and
497 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
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
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,4 +1,5 @@ | ||
import { NDV, WorkflowPage } from '../pages'; | ||
import { clearNotifications } from '../pages/notifications'; | ||
|
||
const workflowPage = new WorkflowPage(); | ||
const ndv = new NDV(); | ||
|
@@ -12,10 +13,7 @@ describe('ADO-2230 NDV Pagination Reset', () => { | |
|
||
// execute node outputting 10 pages, check output of first page | ||
ndv.actions.execute(); | ||
workflowPage.getters | ||
.successToast() | ||
.find('.el-notification__closeBtn') | ||
.click({ multiple: true }); | ||
clearNotifications(); | ||
ndv.getters.outputTbodyCell(1, 1).invoke('text').should('eq', '[email protected]'); | ||
|
||
// open 4th page, check output | ||
|
@@ -27,10 +25,7 @@ describe('ADO-2230 NDV Pagination Reset', () => { | |
// output a lot less data | ||
ndv.getters.parameterInput('randomDataCount').find('input').clear().type('20'); | ||
ndv.actions.execute(); | ||
workflowPage.getters | ||
.successToast() | ||
.find('.el-notification__closeBtn') | ||
.click({ multiple: true }); | ||
clearNotifications(); | ||
|
||
// check we are back to second page now | ||
ndv.getters.pagination().find('li.number').should('have.length', 2); | ||
|
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
Oops, something went wrong.