mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
Fix ManyFetches test so it checks TEST_REDIS_URL is set
This commit is contained in:
parent
f405ae715b
commit
920eb09b3b
@ -28,6 +28,12 @@ describe('ManyFetches', function() {
|
||||
let docs: TestServer;
|
||||
let userApi: UserAPIImpl;
|
||||
|
||||
before(function () {
|
||||
if (!process.env.TEST_REDIS_URL) {
|
||||
return this.skip();
|
||||
}
|
||||
});
|
||||
|
||||
beforeEach(async function() {
|
||||
oldEnv = new EnvironmentSnapshot(); // Needed for prepareDatabase, which changes process.env
|
||||
log.info("Starting servers");
|
||||
|
Loading…
Reference in New Issue
Block a user