Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
750 B
2
Indexable
Never
import * as POSTVistoria from '../integration/services/vistorias/requests/POSTVistorias.requests' 

const idsVistoria = [

]


for(let contador = 10; contador < 20; contador++) {
    var checklist = POSTVistoria.gerarMockChecklist(String(contador), String(contador), contador % 9);

    describe('POST Vistoria', () => {
        it('Adicionar Nova Vistoria ', () => {
            POSTVistoria.addVistoria(checklist).should((response) => {
                expect(response.status).to.eq(201);
                expect(response.body.id).to.not.be.null;
                expect(response.body.object).to.not.be.null;
                idsVistoria.push(response.body.id)
            });
        });
    });


}

export { idsVistoria };