Skip to content

Commit 7b79f11

Browse files
authored
Merge pull request #1534 from form8ion/beta
2 parents 75c2dd2 + e3a8784 commit 7b79f11

15 files changed

+962
-4928
lines changed

.babelrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.remarkrc.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

.remarkrc.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"plugins": [
3+
"@form8ion/remark-lint-preset"
4+
]
5+
}

cucumber.js

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
1-
module.exports = {
2-
base: '--require-module @babel/register --publish-quiet --format-options \'{"snippetInterface": "async-await"}\'',
3-
wip: '--tags "@wip"',
4-
noWip: '--tags "not @wip"',
5-
focus: '--tags @focus'
1+
const base = {
2+
formatOptions: {snippetInterface: 'async-await'},
3+
import: ['test/integration/features/**/*.js']
4+
};
5+
6+
export default base;
7+
8+
export const wip = {
9+
...base,
10+
tags: '@wip and not @skip'
11+
};
12+
13+
export const noWip = {
14+
...base,
15+
tags: 'not @skip and not @wip'
16+
};
17+
18+
export const focus = {
19+
...base,
20+
tags: '@focus'
621
};

0 commit comments

Comments
 (0)