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
13 changed files with 11430 additions and 2 deletions
Showing only changes of commit 801ab51150 - Show all commits

View File

@ -9,5 +9,6 @@ module.exports = {
'!/nodemodules/', '!/nodemodules/',
'!/jest.config.js/', '!/jest.config.js/',
'!/coverage/', '!/coverage/',
'!**/server.ts',
], ],
}; };

View File

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