why this test fails while testing my api endpoint?
this error Uncaught exception: Error: listen EADDRINUSE: address already in use :::3000 import supertest from "supertest" import axios from "axios" import app from ".." const request = supertest(app) describe("Test endpoint responses", () => { it("gets the api endpoint", async () => { const response = await request.get("/api/images") expect(response.ok).toBe(false) }) }) >Solution : This means that… Read More why this test fails while testing my api endpoint?