Skip to content

Commit

Permalink
Updates GraphDB version
Browse files Browse the repository at this point in the history
## What
Updates the GraphDB version.

## Why
The Cypress tests are executed against a GraphDB instance, which has a new TR version. This update changes the GraphDB version to the latest available version.

## How
Updates the GraphDB version in the environment configuration file.
  • Loading branch information
boyan-tonchev committed Dec 5, 2024
1 parent d6105a8 commit d16567b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
GDB_VERSION=10.8.2-TR
GDB_VERSION=11.0.0-TR1
1 change: 1 addition & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ pipeline {

tools {
nodejs 'nodejs-20.11.1'
jdk 'adopt_openjdk21'
}

environment {
Expand Down
5 changes: 1 addition & 4 deletions test-cypress/integration/repository/repositories.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -492,10 +492,7 @@ describe('Repositories', () => {
RepositorySteps.getRepositoryIdEditElement().should('have.css', 'cursor').and('match', /not-allowed/);
});

/**
* Skip it temporarily because it needs backend changes to be merged
*/
it.skip('should allow editing of repository name if repository is not in cluster', () => {
it('should allow editing of repository name if repository is not in cluster', () => {
// When I create a repository,
cy.createRepository({id: repositoryId});
// and go to edit the repository page.
Expand Down

0 comments on commit d16567b

Please sign in to comment.