feat: init-express-backend #6

Merged
Clement merged 38 commits from feat--init-express-backend into master 2024-05-06 19:20:30 +00:00
Showing only changes of commit c238c547b8 - Show all commits

View File

@ -31,7 +31,6 @@ describe("Test the root path", () => {
request(app) request(app)
.get("/") .get("/")
.then(response => { .then(response => {
console.log(response)
expect(response.text).toEqual("hello world from dev") expect(response.text).toEqual("hello world from dev")
done(); done();
}); });