eighth test
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Phillip Nicholas Thern 2022-12-05 09:03:33 +01:00
parent b90258363d
commit 06fe077046
Signed by: nickveliki
GPG Key ID: 9810EF8F924EDF0C
2 changed files with 6 additions and 1 deletions

View File

@ -6,5 +6,6 @@ steps:
- name: test
image: node:16.18-alpine3.15
commands:
- node index.js
- cat index.js
- node index.js 3000

View File

@ -6,4 +6,8 @@ const server = createServer((req, res)=>{
res.end()
})
setTimeout(()=>{
process.exit()
}, 60000)
server.listen(process.argv[2]||3000)