Aziz Khambati

Results 27 comments of Aziz Khambati

I switched to https://www.npmjs.com/package/loadjs That has error callback and retries which I wanted.

Facing the same problem. I think the problem is with [wait-on](https://www.npmjs.com/package/wait-on). This worked: ```sh yarn concurrently "yarn start" "yarn wait-on http://localhost:3000/login && yarn test:e2e" ``` while changing to https and...

Tried that In one terminal window: `yarn start` In another: `yarn wait-on https://local.anarock.com:3000/login && yarn test:e2e` Did not work.

Well so I'm using self-signed certs, so I guess I will either need to pass http options to wait-on or set environment variable `NODE_TLS_REJECT_UNAUTHORIZED=0` https://github.com/jeffbski/wait-on/issues/2 https://github.com/jeffbski/wait-on/pull/3 Edit: Idiot me. I...

One more method can be to add aliases in your tsconfig.json ```json { "compilerOptions": { "paths": { "react": ["preact-compact"], "react-dom": ["preact-compact"] } } } ``` You would have to alias...

Link: https://web.archive.org/web/20180125030643/https://polyfill.io/v2/docs/features/#IntersectionObserver Now that I see there are a few more tiny information lines for a few other features as well.

Yup the purpose of the timer is to space out between requests hoping that the internet comes back on. Something like: ```js { numRetries: 5, retryWaitTime: 1000 // 1 second...

Then you will have to see which of your dependency is requiring ListView. You can figure that out by following: 1. Use React Native Debugger or Chrome Debugger 2. Turn...

Started getting this error as well. Orb version: 4.4.2