Massimo Ronca

Results 15 comments of Massimo Ronca

@amokan @dezmathio It's not an Hound capability, but a Chromedriver option. Hound forwards all the arguments passed as `chromeOptions` to the underlying driver You can see it [here](https://sites.google.com/a/chromium.org/chromedriver/capabilities#TOC-chromeOptions-object) - just...

@isc30 Thanks! I will try the Docker image, meanwhile I'm running emscripten version `1.38.43` (`emsdk activate 1.38.43`)

I've tried with the Docker image, same results. Changing C++ std doesn't change anything, apparently no matter which standard I set in `CMakeLists.txt` `clang++` is called with the param `-std=gnu++11`...

@isc30 Thanks a lot!

One solution that seem to work is to add `options: [clear_mock: true]` at the end of the import For example ```elixir use ExVCR.Mock, adapter: ExVCR.Adapter.Hackney ``` becomes ```elixir use ExVCR.Mock,...