chore: fmt

This commit is contained in:
Michael Abebe
2026-05-12 16:50:18 +03:00
parent 4540d35215
commit 1c5ee19388
181 changed files with 1492 additions and 1100 deletions

View File

@@ -1,10 +1,10 @@
import { INestApplication } from '@nestjs/common';
import { Test, TestingModule } from '@nestjs/testing';
import request from 'supertest';
import { INestApplication } from "@nestjs/common";
import { Test, TestingModule } from "@nestjs/testing";
import request from "supertest";
import { AppModule } from '../src/app.module';
import { AppModule } from "../src/app.module";
describe('Passenger API (e2e)', () => {
describe("Passenger API (e2e)", () => {
let app: INestApplication;
beforeAll(async () => {
@@ -20,7 +20,7 @@ describe('Passenger API (e2e)', () => {
await app.close();
});
it('GET /api/tickets returns a 200 with a list', () => {
return request(app.getHttpServer()).get('/api/tickets').expect(200);
it("GET /api/tickets returns a 200 with a list", () => {
return request(app.getHttpServer()).get("/api/tickets").expect(200);
});
});