disconnect redis after running e2e/timelines.ts tests
This commit is contained in:
parent
3f950e398b
commit
5db84dfc9b
1 changed files with 4 additions and 0 deletions
|
|
@ -36,6 +36,10 @@ describe('Timelines', () => {
|
||||||
redisForTimelines = new Redis(loadConfig().redisForTimelines);
|
redisForTimelines = new Redis(loadConfig().redisForTimelines);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
afterAll(() => {
|
||||||
|
redisForTimelines.disconnect();
|
||||||
|
});
|
||||||
|
|
||||||
describe('Home TL', () => {
|
describe('Home TL', () => {
|
||||||
test.concurrent('自分の visibility: followers なノートが含まれる', async () => {
|
test.concurrent('自分の visibility: followers なノートが含まれる', async () => {
|
||||||
const [alice] = await Promise.all([signup()]);
|
const [alice] = await Promise.all([signup()]);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue