Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to include contextual information in code fragments #39

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Commits on Aug 8, 2022

  1. Search for scenarios in rules

    just95 committed Aug 8, 2022
    Configuration menu
    Copy the full SHA
    c3d6ce0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    905b985 View commit details
    Browse the repository at this point in the history
  3. Add command line options to include contextual information

    Currently the code in Testomatio only shows the scenario's source code.
    However, the descriptions of parent features and rules as well as
    the steps of background sections may also be relevant to the tester.
    Thus, this PR adds command line options to include the source code
    of these elemnts in the exported scenatios.
    just95 committed Aug 8, 2022
    Configuration menu
    Copy the full SHA
    e5dee00 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bf01d29 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2022

  1. Remove destructuring from getLocation

    In `getLocations` the child message is destructured already.
    Since there is no invocation of `getLocation` on a child node,
    the second destructuring is not needed.
    just95 committed Aug 9, 2022
    Configuration menu
    Copy the full SHA
    f57ec57 View commit details
    Browse the repository at this point in the history
  2. Never indent rules

    A `Rule` cannot be the child of another rule. Thus, the check if
    we are `inRule` is not needed. If nested rules were allowed in the
    future, more than a single space of indentation would be needed
    anyway.
    just95 committed Aug 9, 2022
    Configuration menu
    Copy the full SHA
    38bd916 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c6d27c5 View commit details
    Browse the repository at this point in the history