-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
Adding xit and fit to the test result locations #6482
Adding xit and fit to the test result locations #6482
Conversation
Thank you for your pull request and welcome to our community. We require contributors to sign our Contributor License Agreement, and we don't seem to have you on file. In order for us to review and merge your code, please sign up at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need the corporate CLA signed. If you have received this in error or have any questions, please contact us at [email protected]. Thanks! |
Codecov Report
@@ Coverage Diff @@
## master #6482 +/- ##
==========================================
- Coverage 66.65% 66.57% -0.08%
==========================================
Files 253 253
Lines 10621 10633 +12
Branches 4 3 -1
==========================================
Hits 7079 7079
- Misses 3541 3553 +12
Partials 1 1
Continue to review full report at Codecov.
|
Mind updating a test for it in |
Yes, didn't found the related test package, thanks! I will update them |
I dont know why the ci is failing at this tests, tried a "beforeEach" in line 74, or do it inline like it was before, still failing. Locally the tests are running with the equal command that circleci is using: @thymikee @SimenB would need some help here, tried several things and have no clue what is happening (Left my comments to show my previous approach in the |
Hey! Sorry about the super slow response! 😱 To run with circus, do The thing is that you also need to add support for this in This also needs a rebase 🙂 |
@Sly321 ping 🙂 |
@Sly321 any chance of updating this so we can land it? |
Sorry i am very busy at the moment with my work and vacation preparations, but if travis is now joining the circle ci results, this should be finally done. |
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.
Ah, circus just worked out of the box now, that's awesome.
Thanks for fixing this!
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
This command did return the
location
withnull
in the json restults forxit
andfit
nodes.node <pathToMyProject>\node_modules\jest\bin\jest -c=<pathToMyProject>\package.json ./test/myTest.test.jsx --json --testLocationInResults
After the code changes the test location of xit and fit results are present.
Fixes #6453