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
I have searched existing issues to ensure the bug has not already been reported
Fastify version
5.7.1
Plugin version
No response
Node.js version
v18.15.0
Operating system
macOS
Operating system version (i.e. 20.04, 11.3, 10)
13.2.1 (22D68)
Description
I am setting up tests for Fastify application. Our codebase and tests are in TypeScript.
I try to follow documentation here https://github.com/fastify/fastify-cli#test-helpers but there's no declaration file for fastify-cli
I get error Could not find a declaration file for module 'fastify-cli/helper'.
or Could not find a declaration file for module 'fastify-cli'. if I try to import anything from the package.
Just ended up here as I was looking for the exact same issue. I would like to make a PR but Im unsure on how to properly add the typings definitions into the project as I'm used to write Typescript directly or typings for external libraries.
Should I:
Add a helper.d.ts file next to helper.js file?
Add typings into a dedicated types folder?
Add types directly into the helper.js file using JSDoc and TSC to emit declaration file automatically?
Add typings in DefinitivelyTyped repository?
Let me know your preference and I'll take care of this
Prerequisites
Fastify version
5.7.1
Plugin version
No response
Node.js version
v18.15.0
Operating system
macOS
Operating system version (i.e. 20.04, 11.3, 10)
13.2.1 (22D68)
Description
I am setting up tests for Fastify application. Our codebase and tests are in TypeScript.
I try to follow documentation here
https://github.com/fastify/fastify-cli#test-helpers but there's no declaration file for fastify-cli
I get error
Could not find a declaration file for module 'fastify-cli/helper'.
or
Could not find a declaration file for module 'fastify-cli'.
if I try to import anything from the package.Steps to Reproduce
Expected Behavior
I would like to be able to use test helpers in TypeScript tests by importing it with
import
statement and have correct typings for it.I've seen your workaround from here https://github.com/fastify/fastify-cli/pull/554/files
but using
require
doesn't solve the root problem.The text was updated successfully, but these errors were encountered: