Skip to content

Commit

Permalink
feat(filter-panel): fix linting errors (carbon-design-system#7405)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkaeser committed Feb 2, 2022
1 parent 87a20cb commit 7172c73
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ describe('dds-filter-panel | (desktop)', () => {
.click()
.get('@filterGroupItem')
.find('dds-filter-panel-checkbox')
.then(checkboxes => filterCount = checkboxes.length);
.then(checkboxes => (filterCount = checkboxes.length));
cy.visit(`${_path}&knob-Max%20filters_FilterPanel=${filterCount}`)
.get(_selector)
.shadow()
Expand Down Expand Up @@ -196,7 +196,7 @@ describe('dds-filter-panel | (desktop)', () => {
.click()
.get('@lastCheckbox')
.should('be.visible');
cy.screenshot(_screenshotOptions);
cy.screenshot(_screenshotOptions);
});
});

Expand Down Expand Up @@ -280,7 +280,7 @@ describe('dds-filter-panel | (mobile)', () => {
.click()
.get('@filterGroupItem')
.find('dds-filter-panel-checkbox')
.then(checkboxes => filterCount = checkboxes.length);
.then(checkboxes => (filterCount = checkboxes.length));
cy.visit(`${_path}&knob-Max%20filters_FilterPanel=${filterCount}`)
.get(_selector)
.find('.bx--filter-button')
Expand Down

0 comments on commit 7172c73

Please sign in to comment.