ci: Forbid skipping tests (no-changelog) (#6199)

This commit is contained in:
Iván Ovejero
2023-05-24 09:45:37 +02:00
committed by GitHub
parent e046f656fe
commit fe937a0ee3
5 changed files with 48 additions and 1 deletions

View File

@@ -26,6 +26,7 @@ afterAll(async () => {
await testDb.terminate();
});
// eslint-disable-next-line n8n-local-rules/no-skipped-tests
test.skip('user-management:reset should reset DB to default user state', async () => {
await testDb.createUser({ globalRole: globalOwnerRole });

View File

@@ -177,6 +177,7 @@ test('GET /eventbus/destination all returned destinations should exist in eventb
});
// this test (presumably the mocking) is causing the test suite to randomly fail
// eslint-disable-next-line n8n-local-rules/no-skipped-tests
test.skip('should send message to syslog', async () => {
const testMessage = new EventMessageGeneric({
eventName: 'n8n.test.message' as EventNamesTypes,
@@ -217,6 +218,7 @@ test.skip('should send message to syslog', async () => {
});
});
// eslint-disable-next-line n8n-local-rules/no-skipped-tests
test.skip('should confirm send message if there are no subscribers', async () => {
const testMessageUnsubscribed = new EventMessageGeneric({
eventName: 'n8n.test.unsub' as EventNamesTypes,

View File

@@ -245,6 +245,7 @@ describe('GET /executions', () => {
});
// failing on Postgres and MySQL - ref: https://github.com/n8n-io/n8n/pull/3834
// eslint-disable-next-line n8n-local-rules/no-skipped-tests
test.skip('should paginate two executions', async () => {
const workflow = await testDb.createWorkflow({}, owner);