Skip to content

Commit 57588f8

Browse files
fix: oss validates the slack endpoint for url correctness (#6059)
On notification endpoint creation, OSS parses the url to validate that it is the proper format. These tests failed as a result of that change.
1 parent 3b3db90 commit 57588f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cypress/e2e/shared/notificationEndpoints.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe('Notification Endpoints', () => {
1313
description: 'interrupt everyone at work',
1414
status: 'active',
1515
type: 'slack',
16-
url: 'insert.slack.url.here',
16+
url: 'http://api.slack.com',
1717
token: 'plerps',
1818
}
1919

@@ -371,7 +371,7 @@ describe('Notification Endpoints', () => {
371371
'В литературе, как, впрочем, и других областях искусства, есть статисты, классики и бунтари.',
372372
status: 'active',
373373
type: 'slack',
374-
url: 'insert.slack.url.here',
374+
url: 'http://api.slack.com',
375375
token: 'plerps',
376376
},
377377
{

0 commit comments

Comments
 (0)