it('should be able to use the token to access a protected endpoint', (done) => {
      request(app)
        .get('/api/auth/random-number')
        .set('Authorization', `Bearer ${testAuthToken}`)
        .expect(httpStatus.OK)