graphdb-workbench-tests 3.5.0-TR2 → 3.5.0-TR3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,7 +19,7 @@ describe('ACL Management: create rule', () => {
19
19
  cy.enableAutocomplete(repositoryId);
20
20
  AclManagementSteps.importRules(repositoryId);
21
21
  AclManagementSteps.visit();
22
- ApplicationSteps.geLoader().should('not.exist');
22
+ ApplicationSteps.getLoader().should('not.exist');
23
23
  // ensure rules are rendered
24
24
  AclManagementSteps.getAclRules().should('have.length.gt', 0);
25
25
  });
@@ -19,7 +19,7 @@ describe('ACL Management: delete rule', () => {
19
19
  cy.enableAutocomplete(repositoryId);
20
20
  AclManagementSteps.importRules(repositoryId);
21
21
  AclManagementSteps.visit();
22
- ApplicationSteps.geLoader().should('not.exist');
22
+ ApplicationSteps.getLoader().should('not.exist');
23
23
  // ensure rules are rendered
24
24
  AclManagementSteps.getAclRules().should('have.length.gt', 0);
25
25
  });
@@ -18,7 +18,7 @@ describe('ACL Management: edit rule', () => {
18
18
  cy.enableAutocomplete(repositoryId);
19
19
  AclManagementSteps.importRules(repositoryId);
20
20
  AclManagementSteps.visit();
21
- ApplicationSteps.geLoader().should('not.exist');
21
+ ApplicationSteps.getLoader().should('not.exist');
22
22
  // ensure rules are rendered
23
23
  AclManagementSteps.getAclRules().should('have.length.gt', 0);
24
24
  });
@@ -17,7 +17,7 @@ describe('ACL Management: render rules', () => {
17
17
  cy.presetRepository(repositoryId);
18
18
  cy.initializeRepository(repositoryId);
19
19
  AclManagementSteps.visit();
20
- ApplicationSteps.geLoader().should('not.exist');
20
+ ApplicationSteps.getLoader().should('not.exist');
21
21
  });
22
22
 
23
23
  it('Should render empty ACL rules table', () => {
@@ -17,7 +17,7 @@ describe('ACL Management: reorder rules', () => {
17
17
  cy.initializeRepository(repositoryId);
18
18
  AclManagementSteps.importRules(repositoryId);
19
19
  AclManagementSteps.visit();
20
- ApplicationSteps.geLoader().should('not.exist');
20
+ ApplicationSteps.getLoader().should('not.exist');
21
21
  // ensure rules are rendered
22
22
  AclManagementSteps.getAclRules().should('have.length.gt', 0);
23
23
  });
@@ -18,7 +18,7 @@ describe('ACL Management: revert rules', () => {
18
18
  cy.enableAutocomplete(repositoryId);
19
19
  AclManagementSteps.importRules(repositoryId);
20
20
  AclManagementSteps.visit();
21
- ApplicationSteps.geLoader().should('not.exist');
21
+ ApplicationSteps.getLoader().should('not.exist');
22
22
  // ensure rules are rendered
23
23
  AclManagementSteps.getAclRules().should('have.length.gt', 0);
24
24
  });
@@ -16,7 +16,7 @@ describe('ACL Management: rule scopes', () => {
16
16
  cy.initializeRepository(repositoryId);
17
17
  cy.enableAutocomplete(repositoryId);
18
18
  AclManagementSteps.visit();
19
- ApplicationSteps.geLoader().should('not.exist');
19
+ ApplicationSteps.getLoader().should('not.exist');
20
20
  });
21
21
 
22
22
 
@@ -171,7 +171,7 @@ describe('ACL Management: rule scopes', () => {
171
171
  expect(interception.request.body).to.deep.eq(expectedPayload);
172
172
  });
173
173
 
174
- ApplicationSteps.geLoader().should('not.exist');
174
+ ApplicationSteps.getLoader().should('not.exist');
175
175
  // Then I expect the ACL to be saved
176
176
  ApplicationSteps.getSuccessNotifications().should('be.visible');
177
177
 
@@ -18,7 +18,7 @@ describe('ACL Management: update rules', () => {
18
18
  cy.enableAutocomplete(repositoryId);
19
19
  AclManagementSteps.importRules(repositoryId);
20
20
  AclManagementSteps.visit();
21
- ApplicationSteps.geLoader().should('not.exist');
21
+ ApplicationSteps.getLoader().should('not.exist');
22
22
  // ensure rules are rendered
23
23
  AclManagementSteps.getAclRules().should('have.length.gt', 0);
24
24
  });
@@ -51,7 +51,7 @@ describe('ACL Management: update rules', () => {
51
51
  ModalDialogSteps.clickOnConfirmButton();
52
52
  // And I save the ACL list
53
53
  AclManagementSteps.saveAcl();
54
- ApplicationSteps.geLoader().should('not.exist');
54
+ ApplicationSteps.getLoader().should('not.exist');
55
55
  // Then I expect the ACL to be saved
56
56
  ApplicationSteps.getSuccessNotifications().should('be.visible');
57
57
  AclManagementSteps.getAclRules().should('have.length', 5);
@@ -64,7 +64,7 @@ describe('JDBC configuration', () => {
64
64
  JdbcCreateSteps.clickOnPreviewButton();
65
65
 
66
66
  // Then I expect to see loader,
67
- ApplicationSteps.geLoader().should('contain', 'Preview of first 100 rows of table');
67
+ ApplicationSteps.getLoader().should('contain', 'Preview of first 100 rows of table');
68
68
  // and see the generated preview.
69
69
  YasrSteps.getResults().should('be.visible');
70
70
  });