Skip to content

Commit

Permalink
Updated run command
Browse files Browse the repository at this point in the history
  • Loading branch information
scottie1984 committed Feb 18, 2023
1 parent a23ce2f commit 24b5260
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/testapp/run.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
var app = require('./app');

app.listen(5000, function() {
console.log('Example app listening on port 5000!')
app.set('port', 3001);

app.listen(3001, function() {
console.log('Example app listening on port 3001!')
})

0 comments on commit 24b5260

Please sign in to comment.