graphdb-workbench-tests 1.10.0-TR4 → 1.10.0

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.
@@ -1,5 +1,9 @@
1
1
  describe('Main menu tests', function () {
2
2
 
3
+ before(function () {
4
+ cy.clearLocalStorage();
5
+ });
6
+
3
7
  beforeEach(function () {
4
8
  cy.visit('/');
5
9
  cy.window();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphdb-workbench-tests",
3
- "version": "1.10.0-TR4",
3
+ "version": "1.10.0",
4
4
  "description": "Cypress tests for GraphDB workbench",
5
5
  "scripts": {
6
6
  "start": "cypress open",
@@ -11,6 +11,8 @@ class HomeSteps {
11
11
  cy.visit('/');
12
12
  }
13
13
 
14
+ cy.window();
15
+
14
16
  cy.get('.ot-splash').should('not.be.visible');
15
17
  return cy.get('.ot-loader-new-content').should('not.exist');
16
18
  }
@@ -61,7 +63,7 @@ class HomeSteps {
61
63
 
62
64
  static verifyRepositoryIsSelected(repositoryId) {
63
65
  cy.get('ul.repos')
64
- .contains(repositoryId).should('be.hidden');
66
+ .contains(repositoryId).should('not.exist');
65
67
  cy.get('#btnReposGroup')
66
68
  .should('contain', repositoryId);
67
69
  }