Forbes Lindesay
Forbes Lindesay
I'd rather throw an error.
Interesting thought. This could be done as an extra wrapper: ``` js // untested function collector(fn) { var inProgress = 0; var waiting = []; function end() { inProgress--; if...
You can always just do something like: ``` js myLimiter = throat(2) function myLimiterWrap(fn) { return function () { var self = this, args = arguments return myLimiter(function () {...
Based on https://www.browserstack.com/automate/java#setting-local-tunnel you can do local testing by setting the `browserstack.local` capability to `'true'`: ```js import createCabbieDriver from 'cabbie-sync'; const cabbie = createCabbieDriver('browserstack', {capabilities: {'browserstack.local': 'true'}}); ``` should do...
You can see our docs for setting capabilities [here](https://cabbiejs.org/api/) and [here](https://cabbiejs.org/api/classes/options/)
Yes, I think the chromedriver npm package may have stopped working reliably. I'm not sure what's causing this. I think the best way to resolve this might just be to...
Please can you run `yarn prettier:write` to update the formatting to match the project.
This happens because the module is compiled to CommonJS for maximum backwards compatibility, but node.js (& some other environments) screwed this up when they added support for ESM. The result...
You can try additionally passing `--schemaName api`. It would be good if we could infer this from the connection string, but currently the connection string is just passed through to...
@realityking Sorry for the (extreme) delay in reviewing this. I'll add you as a contributor so you can review & merge changes in future. I've set up Rolling Versions now...