refactor: init cypress-cucumber-preprocessor install.

This commit is contained in:
2021-09-02 17:02:45 +02:00
parent 89ec2d42ac
commit 1aa57bbd0a
5000 changed files with 408119 additions and 231 deletions

31
node_modules/cucumber-expressions/examples.txt generated vendored Normal file
View File

@@ -0,0 +1,31 @@
I have {int} cuke(s)
I have 22 cukes
[22]
---
I have {int} cuke(s) and some \[]^$.|?*+
I have 1 cuke and some \[]^$.|?*+
[1]
---
/I have (\d+) cukes? in my (\w+) now/
I have 22 cukes in my belly now
[22,"belly"]
---
/I have (-?\d+) cukes? in my (.*) now/
I have 1 cuke in my belly now
[1,"belly"]
---
/^Something( with an optional argument)?$/
Something
[null]
---
Привет, {word}!
Привет, Мир!
["Мир"]
---
/I have (.*) cukes? in my (.*) now/
I have 22 cukes in my belly now
["22","belly"]
---
I have {} cuke(s) in my {} now
I have 22 cukes in my belly now
["22","belly"]