Skip to content

Commit d9d4232

Browse files
committed
test(integration): configured cucumber for integration tests
1 parent 374cc1c commit d9d4232

File tree

5 files changed

+2043
-7
lines changed

5 files changed

+2043
-7
lines changed

.eslintrc.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ root: true
22
extends:
33
- '@form8ion'
44
- '@form8ion/mocha'
5+
- '@form8ion/cucumber'

.gherkin-lintrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"no-restricted-tags":["on",{"tags":["@focus"]}],"use-and":"on","no-multiple-empty-lines":"on","no-dupe-feature-names":"on"}

cucumber.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
base: '--require-module @babel/register --format-options \'{"snippetInterface": "async-await"}\' --publish-quiet',
3+
wip: '--tags "@wip"',
4+
noWip: '--tags "not @wip"',
5+
focus: '--tags @focus'
6+
};

0 commit comments

Comments
 (0)