“IntegrationTest TypeScript” Réponses codées

IntegrationTest TypeScript

it(`GIVEN an id = "${id}", WHEN getDetailedVehicle() is executed, THEN the Promise will be resolved with ${expectedVehicleDto}.`, async () => {
            (VehicleRepository.findOne as SinonStub).withArgs(id).resolves(vehicleEntity);
            (ClassTransformer.plainToClass as SinonStub).withArgs(VehicleDto, vehicleEntity).returns(vehicleDto);
            (DamageService.getDamageState as SinonStub).withArgs(vehicleDto.id).resolves(true);
 
            const result = VehicleService.getDetailedVehicle(id);
 
            await expect(result).to.be.eventually.deep.equal(expectedVehicleDto);
});
Zany Zebra

IntegrationTest TypeScript

it(`GIVEN vehicle id="${healthyVehicle.id}", WHEN getDamageState() is executed THEN the Promise will be resolved with false.`, async () => {
 
            const result = DamageService.getDamageState(healthyVehicle.id);
 
            await expect(result).to.be.eventually.false;
});
Zany Zebra

Réponses similaires à “IntegrationTest TypeScript”

Questions similaires à “IntegrationTest TypeScript”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code