2470-account_e2e #980
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix#980
Loading…
Reference in New Issue
No description provided.
Delete Branch "2470-account_e2e"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -2545,2 +2545,4 @@
(4, 2, 0, 20.00, 0.00, NULL, 0, 0.00, 0),
(5, 442, 0, 0.00, 3.05, NULL, 0, 0.00, 0);
INSERT INTO `salix`.`ACL` (`model`, `property`, `accessType`, `permission`, `principalType`, `principalId`)
is this code supposed to be here?
@ -0,0 +40,4 @@
it('should edit the third acl', async() => {
await page.autocompleteSearch(selectors.accountAcl.model, 'AccessToken');
await page.autocompleteSearch(selectors.accountAcl.accessType, 'READ');
isn't this one READ already?
@ -0,0 +48,4 @@
});
it('should delete the third result', async() => {
const firstResult = await page.waitToGetProperty(selectors.accountAcl.thirdAcl, 'innerText');
first result using selector of the thirdAcl?
@ -0,0 +52,4 @@
await page.waitToClick(selectors.accountAcl.deleteThirdAcl);
await page.waitToClick(selectors.globalItems.acceptButton);
const message = await page.waitForSnackbar();
const newFirstResult = await page.waitToGetProperty(selectors.accountAcl.thirdAcl, 'innerText');
newFirst?
@ -0,0 +23,4 @@
expect(firstResult).toContain(account);
});
it('should kill this connection', async() => {
"should kill this connection and then get redirected to the login page" this makes easier the code maintenance helping to understand what the test is actually doing
2470-account_e2eto WIP: 2470-account_e2eWIP: 2470-account_e2eto 2470-account_e2eLGTM