This repository has been archived by the owner on May 1, 2024. It is now read-only.
v1.0.0
1.0.0 (2020-04-10)
Features
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');
...