-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Implement new syntax. Closes #1. #5
base: master
Are you sure you want to change the base?
Conversation
@sun1x ok, I'll review it in a few days. |
@@ -1 +1,2 @@ | |||
Timur Shemsedinov <[email protected]> | |||
Sergey Nanovsky <[email protected]> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add @primeare to AUTHORS
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That would not be related to this PR :)
I am okay with @sun1x adding himself to the list in his first PR, though I would not say it is a good thing to do generally. But adding other people should definitely be done separately.
@@ -0,0 +1,48 @@ | |||
/* eslint-disable no-template-curly-in-string */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why underscores __tests__
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's how it is usually done in Jest, but it is not a requirement. If I recall correctly, you may as well name the directory as you wish and just name your test files as *.test.js
or something like that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I change it?
By default, Jest uses this regex to detect test files.
I've just enabled Travis for this repo, so I'm going to close and reopen this PR to trigger a build. |
Here is my implementation, as there is no progress in #4.
@aqrln @primeare, check it please.