In some cases, it's required to share a single instance between tests.
AFAIK, the current macro before is run before each test, so it doesn't work for the cases above.
There is a workaround, which is very ugly though - using lazy_static with phony implementations of Send and Sync, which is... 🤯
My request is therefore to implement the (typical) "before_all" logic, which is executed only once (per context/describe).