Skip to content

Commit d0a2ed1

Browse files
committed
test(integration): enabled integration testing
1 parent 3f6d8d7 commit d0a2ed1

File tree

5 files changed

+661
-5
lines changed

5 files changed

+661
-5
lines changed

.eslintrc.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
extends:
22
- '@form8ion'
3-
- '@form8ion/mocha'
3+
- '@form8ion/mocha'
4+
- '@form8ion/cucumber'

.gherkin-lintrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"no-restricted-tags": ["on", {"tags": ["@focus"]}],
3+
"use-and": "on",
4+
"no-multiple-empty-lines": "on",
5+
"no-dupe-feature-names": "on"
6+
}

cucumber.js

Lines changed: 6 additions & 0 deletions
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"}\'',
3+
wip: '--tags "@wip"',
4+
noWip: '--tags "not @wip"',
5+
focus: '--tags @focus'
6+
};

0 commit comments

Comments
 (0)