@revoloo/cypress6
Version:
Cypress.io end to end testing tool
29 lines (25 loc) • 850 B
JavaScript
const CHEESE = { name: 'cheese', icon: '🧀' }
const TOMATOES = { name: 'tomatoes', icon: '🍅' }
const MUSHROOMS = { name: 'mushrooms', icon: '🍄' }
const PEPPERS = { name: 'peppers', icon: '🌶' }
const PINEAPPLE = { name: 'pineapple', icon: '🍍' }
const CHICKEN = { name: 'chicken', icon: '🐔' }
const STEAK = { name: 'steak', icon: '🐮' }
const HAM = { name: 'ham', icon: '🐷' }
const BACON = { name: 'bacon', icon: '🥓' }
const veggie = [CHEESE, TOMATOES, MUSHROOMS, PEPPERS, PINEAPPLE]
const vegan = [TOMATOES, MUSHROOMS, PEPPERS, PINEAPPLE]
const meatlover = [CHEESE, CHICKEN, STEAK, HAM, BACON]
const hawaian = [CHEESE, PINEAPPLE, HAM]
export const ALL_TOPPINGS = [
CHEESE,
TOMATOES,
MUSHROOMS,
PEPPERS,
PINEAPPLE,
CHICKEN,
STEAK,
HAM,
BACON,
]
export const PRESETS = { veggie, vegan, meatlover, hawaian }