graphdb-workbench-tests 3.2.0-TR6 → 3.2.0-TR7
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.
|
@@ -104,14 +104,14 @@ describe('Cluster states', () => {
|
|
|
104
104
|
ClusterViewSteps.getLink('pc-desktop-7300-pc-desktop-7302').should('have.css', 'stroke-dasharray', '10px, 10px')
|
|
105
105
|
.and('have.css', 'marker-mid', 'url("#arrowhead_big")')
|
|
106
106
|
.invoke('attr', 'stroke')
|
|
107
|
-
.should('eq', 'var(--secondary-
|
|
107
|
+
.should('eq', 'var(--gw-secondary-base)');
|
|
108
108
|
// And I expect an out of sync link between the leader and the out of sync node (the one receiving the snapshot)
|
|
109
109
|
ClusterViewSteps.getLink('pc-desktop-7301-pc-desktop-7300').should('have.css', 'stroke-dasharray', '10px, 10px')
|
|
110
110
|
.invoke('attr', 'stroke')
|
|
111
|
-
.should('eq', 'var(--
|
|
111
|
+
.should('eq', 'var(--gw-neutral-base)');
|
|
112
112
|
// And I expect to have an in sync link between the leader and the node sending the snapshot
|
|
113
113
|
ClusterViewSteps.getLink('pc-desktop-7301-pc-desktop-7302').should('have.css', 'stroke-dasharray', 'none')
|
|
114
114
|
.invoke('attr', 'stroke')
|
|
115
|
-
.should('eq', 'var(--secondary-
|
|
115
|
+
.should('eq', 'var(--gw-secondary-base)');
|
|
116
116
|
});
|
|
117
117
|
});
|
|
@@ -291,8 +291,8 @@ describe('TTYG create new agent', () => {
|
|
|
291
291
|
TtygAgentSettingsModalSteps.enableSimilaritySearchMethodPanel();
|
|
292
292
|
// Then I expect the first similarity search index instance to be selected
|
|
293
293
|
TtygAgentSettingsModalSteps.getSimilarityIndexSelectedOption().should('have.text', 'otkg-vector-new');
|
|
294
|
-
// And I expect that
|
|
295
|
-
TtygAgentSettingsModalSteps.
|
|
294
|
+
// And I expect that no vector fields from that instance should be selected
|
|
295
|
+
TtygAgentSettingsModalSteps.getSimilarityIndexSelectedVectorFieldsValue().should('contain', 'Select field');
|
|
296
296
|
// Then agent save button should be enabled
|
|
297
297
|
TtygAgentSettingsModalSteps.getSaveAgentButton().should('be.enabled');
|
|
298
298
|
// When I set the similarity index threshold
|