From 7aa65315cc2b689ddea83b56121f75da73dc9ab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Fri, 20 Jan 2023 11:02:53 +0100 Subject: [PATCH] test: Skip some syslog tests (no-changelog) (#5206) :test: Skip some syslog tests --- packages/cli/test/integration/eventbus.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/test/integration/eventbus.test.ts b/packages/cli/test/integration/eventbus.test.ts index b1349a5758..62c57ac091 100644 --- a/packages/cli/test/integration/eventbus.test.ts +++ b/packages/cli/test/integration/eventbus.test.ts @@ -178,7 +178,7 @@ test('GET /eventbus/destination all returned destinations should exist in eventb } }); -test('should send message to syslog ', async () => { +test.skip('should send message to syslog', async () => { const testMessage = new EventMessageGeneric({ eventName: 'n8n.test.message', id: uuid() }); config.set('enterprise.features.logStreaming', true); // await cleanLogs(); @@ -217,7 +217,7 @@ test('should send message to syslog ', async () => { }); }); -test('should confirm send message if there are no subscribers', async () => { +test.skip('should confirm send message if there are no subscribers', async () => { const testMessageUnsubscribed = new EventMessageGeneric({ eventName: 'n8n.test.unsub', id: uuid(),