drtheuns
drtheuns
We just setup tenancy in an existing application as well. After updating to 5.4 most of the duplicate queries are gone, except for 2. Queries are run in the following...
Seems to work fine for me: ```php $html5 = new HTML5(); $dom = $html5->loadHTMLFragment('Test'); $html5->saveHTML($dom); // renders: Test ```
@josevalim I've been looking into a possible implementation for this. I see two paths in the current `runner.ex` code: 1. For `async: :per_test`, replace `run_tests/3` with a function similar to...
I made some progress on this, but feel a little blocked in the implementation currently. Code here: https://github.com/elixir-lang/elixir/compare/main...drtheuns:elixir:main I've set it up as follows: When `async: :per_test` is set, the...
Do you mean something like? ```elixir ExUnit.configure(async_mode: :per_test | :per_module) ``` which would then determine how the runner will treat `async: true` code? In the `:per_module` case, we can just...
``` Output: ⛔ expect ValueError: ⛔ failcase("some string"): compile failed ⛔ 🗏 7 expect ValueError: ⛔ 🗏 8 failcase("some string") ## 1 tests ⛔1 ```