Options for Disabling Connection Verification in Tests with `@effect/sql-mysql2` Upgrade
Hello, I'm trying to upgrade to the latest version of
@effect/sql-mysql2. I have a bunch of tests asserting that the correct sql statement was constructed. With the latest version, when I instantiate a mysql client, it tries to verify the connection, which makes a lot of sense in staging/production. I noticed there is no way to opt out of this validation, though, in let's say a (unit) test environment. What are my options here? I'm trying to avoid the setup of an integration test environment with testcontainers. It would be nice in the long run but for now, I'd just like to be able to upgrade without having to invest in such effort.