Skip to content

Commit 8134a73

Browse files
authored
Fix filter_editor combo box assertion for Cypress 13 (#2062)
Signed-off-by: Justin Kim <jungkm@amazon.com>
1 parent 0099406 commit 8134a73

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • cypress/integration/core-opensearch-dashboards/opensearch-dashboards/apps/data_explorer

cypress/integration/core-opensearch-dashboards/opensearch-dashboards/apps/data_explorer/filter_editor.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ describe('discover filter editor', () => {
5454
cy.get('[data-test-subj~="filter-key-extension.raw"]').click();
5555
cy.getElementByTestId('editFilter').click();
5656
cy.getElementByTestId('filterFieldSuggestionList').should(
57-
'have.text',
57+
'contain.text',
5858
'extension.raw'
5959
);
6060
cy.get('[data-test-subj~="filterParamsComboBox"]').should(
61-
'have.text',
61+
'contain.text',
6262
'jpg'
6363
);
6464
cy.getElementByTestId('cancelSaveFilter').click();

0 commit comments

Comments
 (0)