chore: apply prettier on the entire project

This commit is contained in:
jubnl
2026-05-25 21:59:42 +02:00
parent c130ed41be
commit 6bcdfbc34b
488 changed files with 82986 additions and 45830 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
import { describe, it, expect } from 'vitest';
import { HttpException } from '@nestjs/common';
import { JwtAuthGuard } from '../../../src/nest/auth/jwt-auth.guard';
import { HttpException } from '@nestjs/common';
import { describe, it, expect } from 'vitest';
function context(req: unknown) {
return { switchToHttp: () => ({ getRequest: () => req }) } as never;
@@ -2,9 +2,10 @@
* DatabaseService — the shared better-sqlite3 provider (F3). Exercises every
* helper against the real connection so the typed query surface is covered.
*/
import { describe, it, expect } from 'vitest';
import { DatabaseService } from '../../../src/nest/database/database.service';
import { describe, it, expect } from 'vitest';
describe('DatabaseService (typed query helpers)', () => {
const svc = new DatabaseService();
@@ -1,6 +1,7 @@
import { describe, it, expect, vi } from 'vitest';
import { HttpException } from '@nestjs/common';
import { TrekExceptionFilter } from '../../../src/nest/common/trek-exception.filter';
import { HttpException } from '@nestjs/common';
import { describe, it, expect, vi } from 'vitest';
function mockHost() {
const res = { status: vi.fn().mockReturnThis(), json: vi.fn().mockReturnThis() };
+5 -7
View File
@@ -1,17 +1,15 @@
import { describe, it, expect } from 'vitest';
import { Test } from '@nestjs/testing';
import { DatabaseService } from '../../../src/nest/database/database.service';
import { HealthController } from '../../../src/nest/health/health.controller';
import { HealthService } from '../../../src/nest/health/health.service';
import { DatabaseService } from '../../../src/nest/database/database.service';
import { Test } from '@nestjs/testing';
import { describe, it, expect } from 'vitest';
describe('Nest dependency injection (vitest + swc)', () => {
it('injects HealthService + DatabaseService into HealthController by type', async () => {
const moduleRef = await Test.createTestingModule({
controllers: [HealthController],
providers: [
HealthService,
{ provide: DatabaseService, useValue: { get: () => ({ n: 7 }) } },
],
providers: [HealthService, { provide: DatabaseService, useValue: { get: () => ({ n: 7 }) } }],
}).compile();
const controller = moduleRef.get(HealthController);
+2 -1
View File
@@ -1,6 +1,7 @@
import { describe, it, expect, afterEach } from 'vitest';
import { getNestPrefixes, makeNestPathMatcher } from '../../../src/nest/strangler';
import { describe, it, expect, afterEach } from 'vitest';
describe('strangler toggle', () => {
const original = process.env.NEST_PREFIXES;
afterEach(() => {
@@ -1,8 +1,9 @@
import { describe, it, expect, vi } from 'vitest';
import { HttpException } from '@nestjs/common';
import { WeatherController } from '../../../src/nest/weather/weather.controller';
import { ApiError } from '../../../src/services/weatherService';
import type { WeatherService } from '../../../src/nest/weather/weather.service';
import { ApiError } from '../../../src/services/weatherService';
import { HttpException } from '@nestjs/common';
import { describe, it, expect, vi } from 'vitest';
function makeController(svc: Partial<WeatherService>) {
return new WeatherController(svc as WeatherService);
+6 -5
View File
@@ -1,10 +1,11 @@
import { describe, it, expect } from 'vitest';
import { AppModule } from '../../../src/nest/app.module';
import { AdminGuard } from '../../../src/nest/auth/admin.guard';
import { DatabaseService } from '../../../src/nest/database/database.service';
import { HealthController } from '../../../src/nest/health/health.controller';
import { HttpException } from '@nestjs/common';
import { Test } from '@nestjs/testing';
import { AppModule } from '../../../src/nest/app.module';
import { HealthController } from '../../../src/nest/health/health.controller';
import { DatabaseService } from '../../../src/nest/database/database.service';
import { AdminGuard } from '../../../src/nest/auth/admin.guard';
import { describe, it, expect } from 'vitest';
function ctx(user: unknown) {
return { switchToHttp: () => ({ getRequest: () => ({ user }) }) } as never;
+3 -2
View File
@@ -1,7 +1,8 @@
import { ZodValidationPipe } from '../../../src/nest/common/zod-validation.pipe';
import { HttpException } from '@nestjs/common';
import { describe, it, expect } from 'vitest';
import { z } from 'zod';
import { HttpException } from '@nestjs/common';
import { ZodValidationPipe } from '../../../src/nest/common/zod-validation.pipe';
describe('ZodValidationPipe', () => {
const pipe = new ZodValidationPipe(z.object({ name: z.string().min(1) }));