Maxime Pacary

Results 16 comments of Maxime Pacary

Same problem here with Quasar framework which uses webpack under the hood. Shows as well endless loops: ``` child complete child next [] ... ``` Even after server finished its...

After setting env var `START_SERVER_AND_TEST_INSECURE` to 1 (as stated in Readme), I get expected behavior 👍 ``` wait-on(35176) exiting successfully found all: https://localhost:8080 start-server-and-test waitOn finished successfully +54s start-server-and-test running...

Works even better following the [Readme](https://github.com/bahmutov/start-server-and-test/blob/master/README.md) entierely: * `START_SERVER_AND_TEST_INSECURE` back to 0 * Using `start-server-and-test server-task https-get://localhost:8080 test-task` ("https-get" instead of "https" because of **webpack-dev-server** use) Works like a charm...

@andrei9669 did you try both approaches explained in my two last messages ? BTW it seems that you use HTTP, not HTTPS ? is it still the case ?

Does it works with **http-get** instead of **https-get**? How to you set the env var before running `start-server-and-test` command?

Try changing env vars for system (instead of account), or typing directly in command line `set START_SERVER_AND_TEST_INSECURE=1` right before running your `start-server-and-test` command

Normal or not IDK, but it's certainly something you do not expect 😄. Please create another issue for this... If you do so, please tell exactly what command line you...

With `npm install` I get an error like this: > npm WARN [email protected] requires a peer of mongoose@~4 but none is installed. You must install peer dependencies yourself.

Hint : `this.$refs.yourRef.$mapObject` can be as well `undefined` if "yourRef" is exactly named "map" (that is, you declare in your template `` and you call it using `this.$refs.map.$mapObject`). Maybe a...

Got this strange behavior in a project using Quasar Framework. It occurred only when `` was used inside a ``, not outside. FWIW, I've found a workaround to keep it...