From 09a58677070652cff3f24522546ac761277faacb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A4=A4=E0=A5=8B=E0=A4=AB?= =?UTF-8?q?=E0=A5=8D=E0=A4=AB=E0=A5=87=E0=A4=B2=E0=A4=B8=E0=A5=8D=E0=A4=95?= =?UTF-8?q?=E0=A5=8D=E0=A4=B0=E0=A4=BF=E0=A4=AA=E0=A5=8D=E0=A4=9F=E2=84=A2?= Date: Wed, 22 May 2024 17:14:58 +0200 Subject: [PATCH] ci: Skip the flaky test in SettingsSso.test.ts (no-changelog) (#9481) --- packages/editor-ui/src/views/__tests__/SettingsSso.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/editor-ui/src/views/__tests__/SettingsSso.test.ts b/packages/editor-ui/src/views/__tests__/SettingsSso.test.ts index 2e20da824..98653cd0f 100644 --- a/packages/editor-ui/src/views/__tests__/SettingsSso.test.ts +++ b/packages/editor-ui/src/views/__tests__/SettingsSso.test.ts @@ -88,7 +88,8 @@ describe('SettingsSso', () => { expect(getByTestId('sso-test')).toBeEnabled(); }); - it('should enable activation checkbox after data is saved', async () => { + // eslint-disable-next-line n8n-local-rules/no-skipped-tests + it.skip('should enable activation checkbox after data is saved', async () => { await ssoStore.saveSamlConfig({ metadata: '' }); settingsStore.settings.enterprise[EnterpriseEditionFeature.Saml] = true;