Achmad Yuneda Alfajr

Results 2 comments of Achmad Yuneda Alfajr

``` if (typeof password !== 'string') { throw new Error('SASL: SCRAM-SERVER-FIRST-MESSAGE: client password must be a string') } ```

I'm using jest and supertest for testing my express APIs with Postgre. The error comes from my code below. ``` const app = require('../../app'); const request = require('supertest'); let agent...