sh
Jest has detected the following 1 open handle potentially keeping Jest from exiting:
● TCPWRAP
13 | */
14 | function setup(app: Express) : any {
> 15 | SuperTokens.init({
when I'm testing my nodejs app its showing up with this error how can I fix this
r
rp_st
03/12/2023, 5:38 AM
hey @Aithusa - try switching off the telemetry in supertokens.init and try again:
Copy code
Supertokens.init({
// ... other config
telemetry: false
})
SuperTokens is an open source authentication solution offering features like: Different types of login: Email / password, Passwordless (OTP or Magic link based).