graphdb-workbench-tests 2.1.0-RC1 → 2.1.0-RC2

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.
@@ -215,7 +215,9 @@ describe('Repositories', () => {
215
215
  getRepositoryRulesetMenu().should('have.value', '4');
216
216
  getRepositoryDisableSameAsCheckbox().should('not.be.checked');
217
217
  getRepositoryContextIndexCheckbox().should('be.checked');
218
- getRepositoryFtsCheckbox().should('be.checked');
218
+
219
+ // TODO uncomment and refactor when FTS configuration is with clear ON or OFF status
220
+ // getRepositoryFtsCheckbox().should('be.checked');
219
221
  });
220
222
 
221
223
  it('should allow to switch between repositories', () => {
@@ -311,7 +313,9 @@ describe('Repositories', () => {
311
313
 
312
314
  typeRepositoryTitle(newTitle);
313
315
  getRepositoryContextIndexCheckbox().check();
314
- getRepositoryFtsCheckbox().check();
316
+
317
+ // TODO uncomment and refactor when FTS configuration is with clear ON or OFF status
318
+ // getRepositoryFtsCheckbox().check();
315
319
 
316
320
  getSaveRepositoryButton()
317
321
  .click()
@@ -328,7 +332,9 @@ describe('Repositories', () => {
328
332
 
329
333
  getRepositoryTitleField().should('have.value', newTitle);
330
334
  getRepositoryContextIndexCheckbox().should('be.checked');
331
- getRepositoryFtsCheckbox().should('be.checked');
335
+
336
+ // TODO uncomment and refactor when FTS configuration is with clear ON or OFF status
337
+ // getRepositoryFtsCheckbox().should('be.checked');
332
338
  });
333
339
 
334
340
  it('should allow to delete existing repository', () => {
@@ -663,7 +669,7 @@ describe('Repositories', () => {
663
669
  .should('have.length.greaterThan', 0)
664
670
  .then(() => {
665
671
  assertRepositoryStatus(repositoryId, "RUNNING");
666
- })
672
+ });
667
673
 
668
674
  //Restart the repository
669
675
  restartRepository(repositoryId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphdb-workbench-tests",
3
- "version": "2.1.0-RC1",
3
+ "version": "2.1.0-RC2",
4
4
  "description": "Cypress tests for GraphDB workbench",
5
5
  "scripts": {
6
6
  "start": "cypress open",