Skip to content
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

Run Jest tests in sequence #1447

Merged
merged 3 commits into from
Nov 10, 2020
Merged

Run Jest tests in sequence #1447

merged 3 commits into from
Nov 10, 2020

Commits on Nov 6, 2020

  1. Run Jest tests in sequence

    Jest will run all test files simultaneously by default. This means it's impossible to test services—any database records created in them can potentially be overwritten or wiped out by another file running at the same time.
    
    This PR adds the `--runInBand` flag that makes Jest run each file one after the other. It's too bad we can't do this just for the api side but I don't see any way to specify that only certain files should run in band and not others.
    cannikin authored Nov 6, 2020
    Configuration menu
    Copy the full SHA
    39ac8c4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4660b75 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2020

  1. Configuration menu
    Copy the full SHA
    43ffa94 View commit details
    Browse the repository at this point in the history