This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Generator): represent the feature file tree in sidebar buttons
Enhance the sidebar to include a nested directory tree containing the feature buttons Closes #35 BREAKING CHANGE: update the Generator.generate function to be synchronous. BREAKING CHANGE: 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'); ...
- Loading branch information
Showing
2 changed files
with
152 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
Cerner Corporation | ||
# Contributors | ||
|
||
## Cerner Corporation | ||
|
||
- Joshua Kuestersteffen [@jkuester] | ||
- Matej Voboril [@TobiTenno] | ||
- Matthew Beers [@beersonthewall] | ||
- Nikita Prabhakar [@nikitaprabhakar] | ||
|
||
## Community | ||
|
||
- [@beersonthewall] | ||
|
||
[@jkuester]: https://github.com/jkuester | ||
[@TobiTenno]: https://github.com/TobiTenno | ||
[@beersonthewall]: https://github.com/beersonthewall | ||
[@beersonthewall]: https://github.com/beersonthewall | ||
[@nikitaprabhakar]: https://github.com/nikitaprabhakar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters