Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More thorough tests of regex #51

Merged
merged 2 commits into from
Dec 13, 2019
Merged

More thorough tests of regex #51

merged 2 commits into from
Dec 13, 2019

Conversation

benzvan
Copy link
Contributor

@benzvan benzvan commented Dec 13, 2019

Remove unneded character in regex

Remove unneded character in regex
Copy link
Contributor

@therynamo therynamo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Other than the let this looks fantastic! Thank you for your contributions @benzvan!

@@ -46,12 +46,29 @@ describe('ticketFinder', () => {
});

it('should find Jira ticket when there are tickets in the branch name only', async () => {
const tickets = await ticketFinder({ body: mockBodyWithNothing, head: { ref: 'therynamo/JIRA-123' } });
// ticket id only
var tickets = await ticketFinder({ body: mockBodyWithNothing, head: { ref: 'JIRA-123' } });
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
var tickets = await ticketFinder({ body: mockBodyWithNothing, head: { ref: 'JIRA-123' } });
let tickets = await ticketFinder({ body: mockBodyWithNothing, head: { ref: 'JIRA-123' } });

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The linter should have caught this, but usually we want to "prefer let".

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Me too. Fixed it.

@therynamo therynamo merged commit 48ced8b into target:master Dec 13, 2019
therynamo pushed a commit that referenced this pull request Mar 15, 2021
* More thorough tests of regex

Remove unneded character in regex

* let for var
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants