test(input): skip ionChange test on RTL (#25926)

This commit is contained in:
Sean Perkins
2022-09-13 10:31:38 -04:00
committed by GitHub
parent 8732b7bdb7
commit 89b880e91d

View File

@ -2,6 +2,10 @@ import { expect } from '@playwright/test';
import { test } from '@utils/test/playwright';
test.describe('input: events: ionChange', () => {
test.beforeEach(({ skip }) => {
skip.rtl();
});
test.describe('when the input is blurred', () => {
test.describe('should emit', () => {
test('if the value has changed', async ({ page }) => {