У меня есть следующий код для проверки загрузки файла, и он успешно завершен, но я хочу провести модульный тест, чтобы не отправлять файл на s3 aws. Я хочу только его высказать.Любая идея, как издеваться над файлом?
it('should upload the file when a file is attached and there is an auth
header ', done => { //need to be mocked
request.post('/opportunity/xxx/documents/test/pages/1')
.set('Authorization', 'someauth lalalalala')
.set('Content-Type','multipart-formdata')
.attach('image','test/helpers/test.jpeg')
.then(response => {
expect(response.status).to.equal(200)
done()
},done)
})