Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

v1.0.0

Compare
Choose a tag to compare
@jkuester jkuester released this 10 Apr 14:43
· 44 commits to main since this release
21f1de1

1.0.0 (2020-04-10)

Features

  • Generator: represent the feature file tree in sidebar buttons (21f1de1), closes #35

BREAKING CHANGES

  • Generator: update the Generator.generate function to be synchronous.
  • Generator: update the Generator.generate function to accept a single path to the top-level directory containing the feature files instead of an array of paths to each feature file

To migrate follow the example below:

Before:

generator.generate([featureFilePath], 'Project Name', 'TagFilter').then((htmlReportString) => {...});

After:

const htmlReportString = generator.generate(featureDirectoryPath, 'Project Name', 'TagFilter');
...