Skip to content

Instantly share code, notes, and snippets.

@BirgitPohl
Last active April 19, 2020 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BirgitPohl/a87a64df5094ff8132a88ada7edf188e to your computer and use it in GitHub Desktop.
Save BirgitPohl/a87a64df5094ff8132a88ada7edf188e to your computer and use it in GitHub Desktop.
Cypress & Cucumber
# Calls a function:
When I add 1 to my sum
// The function block:
When(/I add (\d) to my sum$/, (summand) => {
return sum + summand;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment