Skip to content

Commit

Permalink
feat(esm): converted the project to esm
Browse files Browse the repository at this point in the history
BREAKING CHANGE: the project is now esm-only
  • Loading branch information
travi committed Apr 1, 2023
1 parent b599f91 commit a0001fb
Show file tree
Hide file tree
Showing 14 changed files with 511 additions and 185 deletions.
File renamed without changes.
File renamed without changes.
26 changes: 21 additions & 5 deletions cucumber.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
module.exports = {
base: '--require-module @babel/register --publish-quiet --format-options \'{"snippetInterface": "async-await"}\'',
wip: '--tags "@wip"',
noWip: '--tags "not @wip"',
focus: '--tags @focus'
const base = {
formatOptions: {snippetInterface: 'async-await'},
import: ['test/integration/features/**/*.js'],
publishQuiet: true
};

export default base;

export const wip = {
...base,
tags: '@wip and not @skip'
};

export const noWip = {
...base,
tags: 'not @skip and not @wip'
};

export const focus = {
...base,
tags: '@focus'
};
Loading

0 comments on commit a0001fb

Please sign in to comment.