Skip to content

Commit d007cad

Browse files
committed
tweak name of parameter
1 parent 7066107 commit d007cad

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/extractData.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const extractData = (event) => {
1414

1515
return {
1616
message: text,
17-
at_user: atUser,
17+
atUser,
1818
link,
1919
};
2020
};

src/extractData.test.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('extractData()', () => {
2424
});
2525

2626
it('extracts the user that sent the message', () => {
27-
expect(returnValue()).toHaveProperty('at_user', '<@UtheRealUser>');
27+
expect(returnValue()).toHaveProperty('atUser', '<@UtheRealUser>');
2828
});
2929

3030
it('returns the message without the @mention of the bot user', () => {
@@ -54,6 +54,7 @@ describe('extractData()', () => {
5454
expect(returnValue()).toHaveProperty('link', 'http://facebook.com');
5555
});
5656
});
57+
5758
describe('with a message with a link in slack markup without pipe with trailing slash ', () => {
5859
it('returns the link embedded in the message', () => {
5960
eventText = '<@U0E0G11N9J5> <http://facebook.com/>';

0 commit comments

Comments
 (0)