mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
remove stray redis dependency, and upgrade node in tests (#173)
* remove stray redis dependency in test * tweak handling of database connection between tests * upgrade node versions in tests, type guessing in node 10 has problems
This commit is contained in:
@@ -2163,7 +2163,8 @@ function testDocApi() {
|
||||
assert.deepEqual(response.data, {error: `Exceeded daily limit for document ${docId}`});
|
||||
});
|
||||
|
||||
after(async () => {
|
||||
after(async function() {
|
||||
if (!process.env.TEST_REDIS_URL) { this.skip(); }
|
||||
await redisClient.quitAsync();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user