when writing tests for UTF8, I forget to insert tear down code like snippet below.
on windows it still run ok, but on linux it scream with addr in use.
I was expecting same behavior on both windows and posix os.
var server: HttpServerRef
let address = initTAddress("127.0.0.1:8888")
suite "UTF-8 validator in action":
teardown:
await server.stop()
await server.closeWait()