fixup! Remove nsfwjs
Some checks failed
Lint / pnpm_install (push) Successful in 1m40s
Test (production install and build) / production (22.11.0) (push) Successful in 1m6s
Publish Docker image / Build (push) Successful in 3m57s
Lint / lint (backend) (push) Failing after 2m23s
Lint / lint (frontend-embed) (push) Successful in 2m17s
Test (backend) / unit (22.11.0) (push) Failing after 8m28s
Lint / lint (frontend-shared) (push) Successful in 1m54s
Lint / lint (misskey-bubble-game) (push) Successful in 1m54s
Lint / lint (misskey-js) (push) Successful in 2m2s
Lint / lint (misskey-reversi) (push) Successful in 1m53s
Lint / lint (frontend) (push) Failing after 9m5s
Lint / lint (sw) (push) Successful in 2m5s
Lint / typecheck (backend) (push) Failing after 1m28s
Lint / typecheck (misskey-js) (push) Successful in 1m18s
Lint / typecheck (sw) (push) Successful in 1m25s
Lint / pnpm_install (pull_request) Successful in 1m24s
Test (backend) / unit (22.11.0) (pull_request) Failing after 37s
Test (production install and build) / production (22.11.0) (pull_request) Successful in 1m22s
Publish Docker image / Build (pull_request) Successful in 4m17s
Lint / lint (backend) (pull_request) Failing after 2m24s
Lint / lint (frontend-embed) (pull_request) Successful in 1m56s
Lint / lint (frontend-shared) (pull_request) Successful in 1m52s
Lint / lint (misskey-bubble-game) (pull_request) Successful in 2m2s
Lint / lint (misskey-js) (pull_request) Successful in 1m58s
Lint / lint (frontend) (pull_request) Failing after 9m15s
Lint / lint (misskey-reversi) (pull_request) Successful in 2m0s
Lint / typecheck (backend) (pull_request) Failing after 1m22s
Lint / typecheck (misskey-js) (pull_request) Successful in 1m19s
Lint / lint (sw) (pull_request) Successful in 2m18s
Lint / typecheck (sw) (pull_request) Successful in 1m44s

This commit is contained in:
ゆめ 2024-12-23 02:37:31 -06:00
parent 81890283f0
commit 34f35e0bb2
No known key found for this signature in database
2 changed files with 0 additions and 8 deletions

View file

@ -17,7 +17,6 @@ import { WebhookTestService } from '@/core/WebhookTestService.js';
import { FlashService } from '@/core/FlashService.js';
import { AccountMoveService } from './AccountMoveService.js';
import { AccountUpdateService } from './AccountUpdateService.js';
import { AiService } from './AiService.js';
import { AnnouncementService } from './AnnouncementService.js';
import { AntennaService } from './AntennaService.js';
import { AppLockService } from './AppLockService.js';
@ -160,7 +159,6 @@ const $AbuseReportService: Provider = { provide: 'AbuseReportService', useExisti
const $AbuseReportNotificationService: Provider = { provide: 'AbuseReportNotificationService', useExisting: AbuseReportNotificationService };
const $AccountMoveService: Provider = { provide: 'AccountMoveService', useExisting: AccountMoveService };
const $AccountUpdateService: Provider = { provide: 'AccountUpdateService', useExisting: AccountUpdateService };
const $AiService: Provider = { provide: 'AiService', useExisting: AiService };
const $AnnouncementService: Provider = { provide: 'AnnouncementService', useExisting: AnnouncementService };
const $AntennaService: Provider = { provide: 'AntennaService', useExisting: AntennaService };
const $AppLockService: Provider = { provide: 'AppLockService', useExisting: AppLockService };
@ -311,7 +309,6 @@ const $ApQuestionService: Provider = { provide: 'ApQuestionService', useExisting
AbuseReportNotificationService,
AccountMoveService,
AccountUpdateService,
AiService,
AnnouncementService,
AntennaService,
AppLockService,
@ -458,7 +455,6 @@ const $ApQuestionService: Provider = { provide: 'ApQuestionService', useExisting
$AbuseReportNotificationService,
$AccountMoveService,
$AccountUpdateService,
$AiService,
$AnnouncementService,
$AntennaService,
$AppLockService,
@ -606,7 +602,6 @@ const $ApQuestionService: Provider = { provide: 'ApQuestionService', useExisting
AbuseReportNotificationService,
AccountMoveService,
AccountUpdateService,
AiService,
AnnouncementService,
AntennaService,
AppLockService,
@ -752,7 +747,6 @@ const $ApQuestionService: Provider = { provide: 'ApQuestionService', useExisting
$AbuseReportNotificationService,
$AccountMoveService,
$AccountUpdateService,
$AiService,
$AnnouncementService,
$AntennaService,
$AppLockService,

View file

@ -14,7 +14,6 @@ import { afterAll, beforeAll, describe, test } from '@jest/globals';
import { GlobalModule } from '@/GlobalModule.js';
import { FileInfo, FileInfoService } from '@/core/FileInfoService.js';
//import { DI } from '@/di-symbols.js';
import { AiService } from '@/core/AiService.js';
import { LoggerService } from '@/core/LoggerService.js';
import type { TestingModule } from '@nestjs/testing';
import type { MockFunctionMetadata } from 'jest-mock';
@ -44,7 +43,6 @@ describe('FileInfoService', () => {
GlobalModule,
],
providers: [
AiService,
LoggerService,
FileInfoService,
],