You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With Express adapter: app.use() can be called before app.init() without errors
With Fastify adapter: app.init() must be called before app.use() to avoid "this.instance.use is not a function" error
This inconsistency can confuse developers when switching between adapters or writing E2E tests for Fastify-based applications.
Suggested Addition:
Add a section explaining adapter-specific middleware registration patterns in E2E tests, including code examples for both Express and Fastify adapters.