mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
chore: fmt
This commit is contained in:
@@ -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);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user