```sh Jest has detected the following 1 open handle potentially keeping Jest from exiting: ● TCP...
a
Copy code
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
hey @Aithusa - try switching off the telemetry in supertokens.init and try again:
Copy code
Supertokens.init({
    // ... other config
    telemetry: false
})
140 Views