fix rebase errors
This commit is contained in:
parent
dcb54c0a8c
commit
83134775f0
3 changed files with 3 additions and 4 deletions
|
|
@ -59,7 +59,6 @@ import { CollapsedQueue } from '@/misc/collapsed-queue.js';
|
||||||
import { CacheService } from '@/core/CacheService.js';
|
import { CacheService } from '@/core/CacheService.js';
|
||||||
import { TimeService } from '@/global/TimeService.js';
|
import { TimeService } from '@/global/TimeService.js';
|
||||||
import { NoteVisibilityService } from '@/core/NoteVisibilityService.js';
|
import { NoteVisibilityService } from '@/core/NoteVisibilityService.js';
|
||||||
import { isPureRenote } from '@/misc/is-renote.js';
|
|
||||||
|
|
||||||
type NotificationType = 'reply' | 'renote' | 'quote' | 'mention';
|
type NotificationType = 'reply' | 'renote' | 'quote' | 'mention';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -143,7 +143,7 @@ describe('UserSearchService', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
afterEach(async () => {
|
afterEach(async () => {
|
||||||
await usersRepository.deleteAll({});
|
await usersRepository.deleteAll();
|
||||||
cacheManagementService.clear();
|
cacheManagementService.clear();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -93,8 +93,8 @@ describe('UserWebhookService', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
afterEach(async () => {
|
afterEach(async () => {
|
||||||
await usersRepository.deleteAll({});
|
await usersRepository.deleteAll();
|
||||||
await userWebhooksRepository.deleteAll({});
|
await userWebhooksRepository.deleteAll();
|
||||||
queueService.userWebhookDeliver.mockReset();
|
queueService.userWebhookDeliver.mockReset();
|
||||||
cacheManagementService.clear();
|
cacheManagementService.clear();
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue