mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 15:51:16 +08:00
test(input): skip ionChange test on RTL (#25926)
This commit is contained in:
@ -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 }) => {
|
||||
|
||||
Reference in New Issue
Block a user