Len Boyette

Results 47 comments of Len Boyette

In browsers, WebCrypto is implemented in native code, you just access it with js. The performance is significantly better. In React Native, all js is run on the main thread....

@cryptoAlgorithm @davidcallanan The recommended library runs code in the WebView without hitting a remote server. [Here's the code for the suggested library](https://github.com/webview-crypto/react-native-webview-crypto/blob/master/index.js#L128-L135) (basically loads an empty html file, then injects...

Here's a quick repro: 1. With React (working): https://codesandbox.io/s/nextjs-swr-react-zh87g4 2. With Preact (failing): https://codesandbox.io/s/nextjs-swr-preact-oz7ck8 The workaround works for me locally. Here's the resulting `next.config.js`: ```js const withPreact = require('next-plugin-preact'); /**...

For anyone looking for a quick copy/paste fix: ```js function p(fn) { return { defer: true, async fn(deferred) { await fn(); deferred.resolve(); } } } ``` Usage: ```js const wait...

Hmm, I'd understand for `--workers`, but I'm not sure why it's not working for `--tests-per-worker`

Not in the near future (probably in months, not weeks or days). I'm not focusing on Browsertron much anymore and this library was a part of that work. I'll do...

No worries (and thanks)!

The latest ([`0.1.0`](https://pypi.org/project/pytest-parallel/0.1.0/)) is quite a big change that should resolve most reporting issues. It may solve this issue as well.

Thanks for the interest. Here's what I'd do: 1) Repro 1) Do the brief [steps in CONTRIBUTING.md](https://github.com/browsertron/pytest-parallel/blob/master/CONTRIBUTING.md) and make sure the existing tests were working. 1) Write a failing [test...

Please update to [0.1.0](https://pypi.org/project/pytest-parallel/0.1.0/) and try again.