Skip to content

Commit

Permalink
fix(jest-dev-server): do not require port to run server
Browse files Browse the repository at this point in the history
Closes #146
  • Loading branch information
gregberge committed Nov 3, 2018
1 parent cceb0bd commit 5aee5fe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/jest-dev-server/src/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,11 @@ export async function setup(config) {
)
}
}
}

runServer(config)
runServer(config)

if (config.port) {
const { launchTimeout } = config

let timeout
Expand Down

0 comments on commit 5aee5fe

Please sign in to comment.