Using XCTest I can have a func tearDown() async throws however with swift-testing, we are forced to do teardown logic in the deinit, which supports neither throwing nor async code.
What's the best way to run some common async teardown logic after each test using swift-testing?