Len Boyette

Results 47 comments of Len Boyette

@tforbus Just a heads up, S3 can't terminate tls, so in your current configuration, `http://example.com` would redirect, but `https://example.com` would have a cert issue. You need to point your DNS...

~~As a workaround, you can perform the redirect within your app. Just add middleware that checks the protocol of the host header, and redirects if it's http.~~ This doesn't work....

I published [a really small shim](https://github.com/kevlened/isomorphic-webcrypto) as a workaround until browsers are supported here. I do have a few questions: **What are the supported browsers?** If you just export `window.crypto`...

For those who stumble upon this issue, including my future self: I included `with context` to the relevant macro imports, disabling the cache for those modules. [This is described in...

The [`jest-screenshot-reporter`](https://github.com/alexeyraspopov/jest-webdriver/tree/master/packages/jest-environment-webdriver) handles screenshots the way @testerez shows. That reporter currently assumes `browser` uses the `webdriver` api, but [the logic is simple](https://github.com/alexeyraspopov/jest-webdriver/blob/master/packages/jest-screenshot-reporter/modules/JestScreenshotReporter.js), so you could write something similar for `puppeteer`...

This project was built to run many Selenium tests in parallel. To achieve that, it patches several pytest internals. As pytest changes, these patches become ever more precarious. Additionally, it...

There isn't a way to do this automatically without storing a copy of the database (or the modified records) before the migration. It *is* possible to build your own rollback...