crazyones110

Results 4 issues of crazyones110

Considering this code ```javascript const myRedis = new IORedis({ retryStrategy(times) { const delay = Math.min(times * 50, 5000) return delay }, enableOfflineQueue: true, maxRetriesPerRequest: null, }) ``` I want to...

question

### Version 1.53.0 ### Steps to reproduce I'm testing a poorly written Android Hybrid app which does not properly destroy webviews when exited. Steps to reproduce: ```typescript import { _android...

Example where I can reproduce the problem (language: TypeScript): ```typescript declare const driver: { $: (selector: string) => { click: () => void }; } driver.$('//*[@text="login"]').click(); // syntax highlight breaks...