Skip to content

Commit a079d20

Browse files
authored
test(radio): correct screenshot name from toggle (#28099)
Issue number: N/A --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? <!-- Please describe the current behavior that you are modifying. --> Radio has a test with the wrong screenshot name of toggle. ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> - Radio has a test with the correct screenshot name. ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. --> N/A
1 parent 6d4eabc commit a079d20

13 files changed

+1
-1
lines changed

core/src/components/radio/test/item/radio.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ configs().forEach(({ title, screenshot, config }) => {
1717
config
1818
);
1919
const list = page.locator('ion-list');
20-
await expect(list).toHaveScreenshot(screenshot(`toggle-list`));
20+
await expect(list).toHaveScreenshot(screenshot(`radio-list`));
2121
});
2222
test('should render correctly in inset list', async ({ page }) => {
2323
await page.setContent(

0 commit comments

Comments
 (0)