File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ const extractData = (event) => {
14
14
15
15
return {
16
16
message : text ,
17
- at_user : atUser ,
17
+ atUser,
18
18
link,
19
19
} ;
20
20
} ;
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ describe('extractData()', () => {
24
24
} ) ;
25
25
26
26
it ( 'extracts the user that sent the message' , ( ) => {
27
- expect ( returnValue ( ) ) . toHaveProperty ( 'at_user ' , '<@UtheRealUser>' ) ;
27
+ expect ( returnValue ( ) ) . toHaveProperty ( 'atUser ' , '<@UtheRealUser>' ) ;
28
28
} ) ;
29
29
30
30
it ( 'returns the message without the @mention of the bot user' , ( ) => {
@@ -54,6 +54,7 @@ describe('extractData()', () => {
54
54
expect ( returnValue ( ) ) . toHaveProperty ( 'link' , 'http://facebook.com' ) ;
55
55
} ) ;
56
56
} ) ;
57
+
57
58
describe ( 'with a message with a link in slack markup without pipe with trailing slash ' , ( ) => {
58
59
it ( 'returns the link embedded in the message' , ( ) => {
59
60
eventText = '<@U0E0G11N9J5> <http://facebook.com/>' ;
You can’t perform that action at this time.
0 commit comments