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;
});