-
-
Notifications
You must be signed in to change notification settings - Fork 189
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
Add global beforeEach/afterEach hooks #900
Conversation
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 131f119:
|
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.
Great job @brapifra!
I put some comments in order to ensure we preserve consistency across the primitives offered by the API.
|
||
import * as stubArb from '../../stubs/arbitraries'; | ||
import * as stubRng from '../../stubs/generators'; | ||
|
||
describe('AsyncProperty', () => { | ||
beforeEach(() => resetConfigureGlobal()); |
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.
Prefer using afterEach
in that case:
beforeEach(() => resetConfigureGlobal()); | |
afterEach(() => resetConfigureGlobal()); |
The global configuration specified by the last it
will not be cleaned for other tests. Global configuration can spread across test files.
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.
🤔 Actually we may even mock readConfigureGlobal
and don't use any of configureGlobal
or resetConfigureGlobal
. But you can keep it that way for this PR
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.
Yeah, we could mock it. Although I usually prefer to write integration-like tests. But it's really a personal preference so I don't mind changing it 😄
Regarding the beforeEach
/afterEach
comment. I'm pretty sure jest runs each test module/file in isolation. Therefore, I think it doesn't really matter to use one or the other in this case...
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.
Just to make sure, prefer a afterEach
here
|
||
import * as stubArb from '../../stubs/arbitraries'; | ||
import * as stubRng from '../../stubs/generators'; | ||
|
||
describe('Property', () => { | ||
beforeEach(() => resetConfigureGlobal()); |
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.
Same use afterEach
instead
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.
beforeEach(() => resetConfigureGlobal()); | |
afterEach(() => resetConfigureGlobal()); |
I think it would be safer to always clean properly after the run. Cleaning before do not ensure we clean stuff for next tests.
I've made most of the requested changes. Let me know what you think @dubzzz ! configureGlobal({
asyncBeforeEach: () => {
console.log("I just want to run this with my async properties and I don't want to break the sync ones");
}
}) |
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.
Once again thanks a lot for this huge contribution. I added some comments and suggestions to update the code and offer more flexibility and sanity checks to the end-users
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.
@brapifra Thank you so much for your work and time. Just a few remarks before we merge it. Really really thank for the time you already spent for this PR 👍 By the way, let's ignore the red codeclimate, I don't think that the error is relevant.
Co-authored-by: Nicolas DUBIEN <github@dubien.org>
Perfect 👍 Great job! Thanks a lot for the Pull Request! |
In a nutshell
This PR adds 4 new global parameters:
beforeEach
,afterEach
,asyncBeforeEach
andasyncAfterEach
that will be executed during the execution of any property.It solves the issue #876
✔️ New feature
❌ Fix an issue
❌ Documentation improvement
❌ Other: please explain
(✔️: yes, ❌: no)
Potential impacts
None