Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created October 1, 2024 17:23
Show Gist options
  • Save dsibinski/ee04a5c91df633a66935ed6a663f3ae1 to your computer and use it in GitHub Desktop.
Save dsibinski/ee04a5c91df633a66935ed6a663f3ae1 to your computer and use it in GitHub Desktop.
test("should apply 10% discount if there are exactly 5 business class tickets", () => {
const tickets = Array.from({ length: 5 }, () => ({
price: 10,
isBusinessClass: true,
}));
const totalPrice = calculator.calculateTotalTicketsPrice(tickets);
expect(totalPrice).toBe(45); // 10% discount
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment