graphdb-workbench-tests 2.1.0 → 2.1.1-RC1

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.
@@ -239,6 +239,19 @@ describe('My Settings', () => {
239
239
  )
240
240
  });
241
241
 
242
+ it('sameAs button should be disabled if inference is turned off', () => {
243
+ clickLabelBtn('#inference-on')
244
+ .then(() => {
245
+ cy.get('#inference-on')
246
+ .find('.switch:checkbox')
247
+ .should('not.be.visible');
248
+ });
249
+
250
+ cy.get('#sameas-on')
251
+ .find('.switch:checkbox')
252
+ .should('not.be.visible');
253
+ });
254
+
242
255
  function getUserRepositoryTable() {
243
256
  return cy.get('.user-repositories .table');
244
257
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphdb-workbench-tests",
3
- "version": "2.1.0",
3
+ "version": "2.1.1-RC1",
4
4
  "description": "Cypress tests for GraphDB workbench",
5
5
  "scripts": {
6
6
  "start": "cypress open",