Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioCastigliano committed Apr 9, 2024
1 parent e88dab8 commit 08c7934
Showing 1 changed file with 7 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@ import type { SbbCheckboxElement, SbbCheckboxGroupElement } from '../checkbox/in
import { SbbCheckboxPanelElement } from '../checkbox/index.js';
import { EventSpy, waitForCondition, waitForLitRender } from '../core/testing/index.js';
import { fixture } from '../core/testing/private/index.js';
import type {
SbbRadioButtonGroupElement,
SbbRadioButtonElement,
SbbRadioButtonPanelElement,
} from '../radio-button/index.js';
import type { SbbRadioButtonElement, SbbRadioButtonGroupElement } from '../radio-button/index.js';
import { SbbRadioButtonPanelElement } from '../radio-button/index.js';

import '../link/block-link-button/index.js';

Expand Down Expand Up @@ -293,9 +290,9 @@ describe(`sbb-selection-expansion-panel with ${fixture.name}`, () => {
`,
{
modules: [
'../radio-button/index.ts',
'../radio-button/radio-button-group/index.ts',
'../radio-button/radio-button-panel/index.ts',
'./selection-expansion-panel.ts',
'../radio-button/index.ts',
],
},
);
Expand Down Expand Up @@ -379,11 +376,7 @@ describe(`sbb-selection-expansion-panel with ${fixture.name}`, () => {
</sbb-radio-button-group>
`,
{
modules: [
'../radio-button/index.ts',
'./selection-expansion-panel.ts',
'../radio-button/index.ts',
],
modules: ['../radio-button/index.ts', './selection-expansion-panel.ts'],
},
);
panel1 = nestedElement.querySelector<SbbSelectionExpansionPanelElement>('#panel1')!;
Expand Down Expand Up @@ -521,11 +514,7 @@ describe(`sbb-selection-expansion-panel with ${fixture.name}`, () => {
</div>
`,
{
modules: [
'./selection-expansion-panel.ts',
'../radio-button/index.ts',
'../radio-button/index.ts',
],
modules: ['../radio-button/index.ts', './selection-expansion-panel.ts'],
},
);

Expand Down Expand Up @@ -730,11 +719,7 @@ describe(`sbb-selection-expansion-panel with ${fixture.name}`, () => {
</sbb-checkbox-group>
`,
{
modules: [
'../checkbox/index.ts',
'./selection-expansion-panel.ts',
'../checkbox/index.ts',
],
modules: ['../checkbox/index.ts', './selection-expansion-panel.ts'],
},
);
});
Expand Down

0 comments on commit 08c7934

Please sign in to comment.