1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-08 23:10:05 +00:00

test(deploy): cover deploy route with unit test

This commit is contained in:
Yury Shkoda
2021-07-09 08:28:33 +03:00
parent b4bf72f704
commit febdeed2c5
7 changed files with 3500 additions and 13 deletions

6
src/server.ts Normal file
View File

@@ -0,0 +1,6 @@
import app from './app'
const port = 5000
app.listen(port, () => {
console.log(`⚡️[server]: Server is running at http://localhost:${port}`)
})