disconnect redis after running e2e/timelines.ts tests

This commit is contained in:
Hazelnoot 2025-10-01 11:49:42 -04:00
parent 3f950e398b
commit 5db84dfc9b

View file

@ -36,6 +36,10 @@ describe('Timelines', () => {
redisForTimelines = new Redis(loadConfig().redisForTimelines);
});
afterAll(() => {
redisForTimelines.disconnect();
});
describe('Home TL', () => {
test.concurrent('自分の visibility: followers なノートが含まれる', async () => {
const [alice] = await Promise.all([signup()]);