-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
sort tests #1004
sort tests #1004
Conversation
@UziTech: Interesting. This is alphabetizing the console output, yeah? Just to make sure I'm understanding...then I should probably go to sleep. |
And alphabetizing the way the tests are ran. So we can run tests in a specific order if we need to. |
Cool. Do we have a way to run a single test case? Just curious. |
No we don't. Do you want me to set that up? |
@UziTech: If it's not difficult, it would probably be helpful - not that it takes that long for our tests to run, of course...we just have a lot and might be easier for someone adding a new feature to test their single piece of new functionality, you know? |
I added running only certain tests by specifying a glob pattern node test --glob gfm* that will only run tests that start with 'gfm' that glob also works with node test --bench --glob gfm* |
Thanks, brother! |
Sorting tests alphabetically for more deterministic tests.
@joshbruce this was supposed to go with #1002