Dezzpil

Results 5 comments of Dezzpil

> Versions: > "supertest": "6.0.1", > > Code example: > > ``` > it('should fail getting all users, reason role = user', async () => { > const authHeaders =...

Do it like this: ```javascript const agent = request.agent(app); agent .set('Authorization', token) .get('/user/all') ... ```

I wrote test to reproduce problem ```typescript describe('a lot of calls', function () { this.timeout(10000) it('should handle many requests', (done) => { const app = express(); app.get('/', (req, res) =>...

`useDaemonProcess: false` does not help, but `export NX_DAEMON=false;` does

I am learning the book at the moment and has been faced same problems. So I created fork with correct Dockerfile and requirements.txt, that doesn`t throw conflicts and allow me...