From f772d74fd641d622149ad8176d1db3c1dec945c6 Mon Sep 17 00:00:00 2001 From: Tianxiao Wang Date: Mon, 29 Apr 2019 19:44:05 +0800 Subject: [PATCH] feat: add waitOnScheme options (#232) --- packages/jest-dev-server/README.md | 28 ++++++++++++++++++++++++++ packages/jest-dev-server/src/global.js | 4 +++- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/packages/jest-dev-server/README.md b/packages/jest-dev-server/README.md index ff410cf6..595e35a2 100644 --- a/packages/jest-dev-server/README.md +++ b/packages/jest-dev-server/README.md @@ -189,6 +189,34 @@ module.exports = { } ``` +### `waitOnScheme` + +`jest-dev-server` use the [`wait-on`](https://www.npmjs.com/package/wait-on) npm package to wait for resources to become available before calling callback. + +Type: `object`, default to `{}`. + +- `delay`: optional initial delay in ms, default 0 +- `interval`: optional poll resource interval in ms, default 250ms +- `log`: optional flag which outputs to stdout, remaining resources waited on and when complete or errored +- `reverse`: optional flag to reverse operation so checks are for resources being NOT available, default false +- `timeout`: optional timeout in ms, default Infinity. Aborts with error +- `tcpTimeout`: optional tcp timeout in ms, default 300ms +- `verbose`: optional flag which outputs debug output, default false +- `window`: optional stabilization time in ms, default 750ms. Waits this amount of time for file sizes to stabilize or other resource availability to remain unchanged + +**Note:** http(s) specific options, see https://github.com/request/request#readme for specific details + +```js +module.exports = { + command: 'npm run start --port 3000', + port: 3000, + usedPortAction: 'kill', + waitOnScheme: { + delay: 1000, + }, +} +``` + ## Troubleshooting - If using `port` makes the terminal to ask for root password although the port is valid and accessible then use `usePortAction: 'ignore'`. diff --git a/packages/jest-dev-server/src/global.js b/packages/jest-dev-server/src/global.js index 0707ceaa..355ae0e1 100644 --- a/packages/jest-dev-server/src/global.js +++ b/packages/jest-dev-server/src/global.js @@ -18,6 +18,7 @@ const DEFAULT_CONFIG = { port: null, protocol: 'http', usedPortAction: 'ask', + waitOnScheme: {}, } const pTreeKill = promisify(treeKill) @@ -186,10 +187,11 @@ async function setupJestServer(providedConfig, index) { } if (config.port) { - const { launchTimeout, protocol, host, port } = config + const { launchTimeout, protocol, host, port, waitOnScheme } = config const opts = { resources: [`${protocol}://${host}:${port}`], + ...waitOnScheme, } let timeout