Skip to content

Commit

Permalink
chore: fix eslint issues after pulling remote
Browse files Browse the repository at this point in the history
Signed-off-by: hainenber <[email protected]>
  • Loading branch information
hainenber committed Sep 12, 2024
1 parent 81ff60c commit 86740c2
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,14 +175,12 @@ describe('SelectControl', () => {
describe('empty placeholder', () => {
describe('withMulti', () => {
it('does not show a placeholder if there are no choices', () => {
const container = renderSelectControl({
renderSelectControl({
choices: [],
multi: true,
placeholder: 'add something',
});
expect(
screen.queryByRole('option')
).not.toBeInTheDocument();
expect(screen.queryByRole('option')).not.toBeInTheDocument();
});
});
describe('withSingleChoice', () => {
Expand Down

0 comments on commit 86740c2

Please sign in to comment.