Skip to content

Commit

Permalink
fix: js linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Sobolewski committed Sep 15, 2023
1 parent 23711a4 commit 5975ef7
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions js/cypress/e2e/e2e-test/fluentComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,6 @@ function dropdownDefaultTest(value = 'Option A', output = 'A') {
cy.get('#fluentInputs-dropdownValue').should('contain', `Value: ${output}`);
}

function dropdownChangeTest() {
cy.get('#fluentInputs-dropdown-option').click();
cy.get('#fluentInputs-dropdown-list2').click();
cy.get('#fluentInputs-dropdown-option').should('contain', 'Option C');
cy.get('#fluentInputs-dropdownValue').contains('Value: C');
}

function dropdownMultiselectDefaultTest(value = 'Option A, Option C', output = 'Value: A, C') {
cy.get('#fluentInputs-dropdownMultiselect-option').should('contain', `${value}`);
cy.get('#fluentInputs-dropdownMultiselectValue').should('contain', `${output}`);
Expand Down

0 comments on commit 5975ef7

Please sign in to comment.