Skip to content

Ineligible customer does not get discount (Jest)

### ✅ Ineligible customer does not get discount
- **Given** the customer is not eligible for discounts
- **When** the customer checks out
- **Then** no discount should be applied
import { story } from 'executable-stories-jest';
it("Ineligible customer does not get discount", () => {
story.init();
story.given("the customer is not eligible for discounts");
story.when("the customer checks out");
story.then("no discount should be applied");
});