test: Skip some syslog tests (no-changelog) (#5206)

:test: Skip some syslog tests
This commit is contained in:
Iván Ovejero 2023-01-20 11:02:53 +01:00 committed by GitHub
parent 11da863a21
commit 7aa65315cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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(),