I had a similar error occur when I was trying to test with jest and nestjs.
It was happening because I was not waiting for the Fastify instance to be ready.
// only required for fastify, express works without this
await app.getHttpAdapter().getInstance().ready();