-
Notifications
You must be signed in to change notification settings - Fork 3
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 a simple test runner #99
Labels
Type: enhancement
New feature or request.
Comments
6 tasks
derevnjuk
added a commit
that referenced
this issue
Dec 12, 2022
derevnjuk
added a commit
that referenced
this issue
Dec 12, 2022
derevnjuk
added a commit
that referenced
this issue
Dec 12, 2022
derevnjuk
added a commit
that referenced
this issue
Dec 12, 2022
derevnjuk
added a commit
that referenced
this issue
Dec 13, 2022
derevnjuk
added a commit
that referenced
this issue
Dec 13, 2022
derevnjuk
added a commit
that referenced
this issue
Dec 13, 2022
derevnjuk
added a commit
that referenced
this issue
Dec 13, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We should provide a simple implementation for the test runner that can look like this:
There are multiple strategies for how to run tests:
before-all
orbefore-each
(recommended).The two most viable options are running before all the tests vs running before every single test. The implementation should allow us to utilize them both, to give users more freedom to decide how to run tests.
Below you can find the implementation of the
before-each
strategy:The text was updated successfully, but these errors were encountered: