Path to a module that exports an async
function that will run once before everything. Globals defined here can only be read in globalTeardown
.
Typically it makes more sense to mock out any dependencies, but if you have no other choice than to spin up a database or other external service that absolutely must be running during the tests, globalSetup
would be the place to do it.