mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-07 21:15:41 +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('Freight API (e2e)', () => {
|
||||
describe("Freight API (e2e)", () => {
|
||||
let app: INestApplication;
|
||||
|
||||
beforeAll(async () => {
|
||||
@@ -20,7 +20,7 @@ describe('Freight API (e2e)', () => {
|
||||
await app.close();
|
||||
});
|
||||
|
||||
it('GET /api/bookings returns a 200 with a list', () => {
|
||||
return request(app.getHttpServer()).get('/api/bookings').expect(200);
|
||||
it("GET /api/bookings returns a 200 with a list", () => {
|
||||
return request(app.getHttpServer()).get("/api/bookings").expect(200);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user