mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
test: Skip some syslog tests (no-changelog) (#5206)
:test: Skip some syslog tests
This commit is contained in:
parent
11da863a21
commit
7aa65315cc
|
@ -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() });
|
const testMessage = new EventMessageGeneric({ eventName: 'n8n.test.message', id: uuid() });
|
||||||
config.set('enterprise.features.logStreaming', true);
|
config.set('enterprise.features.logStreaming', true);
|
||||||
// await cleanLogs();
|
// 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({
|
const testMessageUnsubscribed = new EventMessageGeneric({
|
||||||
eventName: 'n8n.test.unsub',
|
eventName: 'n8n.test.unsub',
|
||||||
id: uuid(),
|
id: uuid(),
|
||||||
|
|
Loading…
Reference in a new issue