fix(back-button, breadcrumb, item): flip chevron icons on RTL (#24705)

This commit is contained in:
Wael M.B
2022-02-14 16:34:10 +01:00
committed by GitHub
parent 82c41510de
commit a093544fdf
6 changed files with 26 additions and 4 deletions

View File

@ -8,3 +8,12 @@ test('breadcrumbs: basic', async () => {
const compare = await page.compareScreenshot();
expect(compare).toMatchScreenshot();
});
test('breadcrumbs: basic-rtl', async () => {
const page = await newE2EPage({
url: '/src/components/breadcrumbs/test/basic?ionic:_testing=true&rtl=true'
});
const compare = await page.compareScreenshot();
expect(compare).toMatchScreenshot();
});