mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 23:58:13 +08:00
test(many): skip additional flaky tests (#26523)
This commit is contained in:
@ -1,7 +1,8 @@
|
||||
import { expect } from '@playwright/test';
|
||||
import { test, dragElementBy } from '@utils/test/playwright';
|
||||
|
||||
test.describe('reorder group: interactive', () => {
|
||||
// TODO FW-3079
|
||||
test.describe.skip('reorder group: interactive', () => {
|
||||
test.beforeEach(({ skip }) => {
|
||||
skip.rtl();
|
||||
skip.mode('ios', 'Reorder group does not have per-mode styles');
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
import { expect } from '@playwright/test';
|
||||
import { test, dragElementBy } from '@utils/test/playwright';
|
||||
|
||||
test.describe('reorder group: nested', () => {
|
||||
// TODO FW-3079
|
||||
test.describe.skip('reorder group: nested', () => {
|
||||
test.beforeEach(({ skip }) => {
|
||||
skip.rtl();
|
||||
skip.mode('ios', 'Reorder group does not have per-mode styles');
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
import { expect } from '@playwright/test';
|
||||
import { test, dragElementBy } from '@utils/test/playwright';
|
||||
|
||||
test.describe('reorder group: scroll-target', () => {
|
||||
// TODO FW-3079
|
||||
test.describe.skip('reorder group: scroll-target', () => {
|
||||
test.beforeEach(({ skip }) => {
|
||||
skip.rtl();
|
||||
skip.mode('ios', 'Reorder group does not have per-mode styles');
|
||||
|
||||
@ -2,7 +2,8 @@ import { expect } from '@playwright/test';
|
||||
import type { E2EPage } from '@utils/test/playwright';
|
||||
import { test } from '@utils/test/playwright';
|
||||
|
||||
test.describe('ripple-effect: basic', () => {
|
||||
// TODO FW-3081
|
||||
test.describe.skip('ripple-effect: basic', () => {
|
||||
test('should add .ion-activated when pressed', async ({ page }) => {
|
||||
await verifyRippleEffect(page, '#small-btn');
|
||||
await verifyRippleEffect(page, '#large-btn');
|
||||
|
||||
@ -108,7 +108,8 @@ test.describe('overlays: focus', () => {
|
||||
test.beforeEach(({ skip }) => {
|
||||
skip.rtl();
|
||||
});
|
||||
test('should not select a hidden focusable element', async ({ page, browserName }) => {
|
||||
// TODO FW-3080
|
||||
test.skip('should not select a hidden focusable element', async ({ page, browserName }) => {
|
||||
await page.setContent(`
|
||||
<style>
|
||||
[hidden] {
|
||||
|
||||
Reference in New Issue
Block a user