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 only and skip for test groups #33

Merged
merged 1 commit into from May 15, 2021
Merged

Commits on May 15, 2021

  1. Add only and skip for test groups

    This change adds `only` and `skip` options to run only a test group or skip a test group.
    
    For example:
    
    ```js
    testRule({
      ruleName,
      only: true,  // added
      skip: true,  // added
      accept: [ /* ... */ ],
      reject: [ /* ... */ ],
    });
    ```
    ybiquitous committed May 15, 2021
    Configuration menu
    Copy the full SHA
    0d15cc4 View commit details
    Browse the repository at this point in the history