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

[FEATURE] ember-testing-checkbox-helpers #9798

Merged
merged 1 commit into from
Jan 5, 2015

Commits on Jan 5, 2015

  1. [FEATURE ember-testing-checkbox-helpers]

    Introduce the `check` and `uncheck` test helpers.
    
    Add `check` and `uncheck` test helpers.
    
    `check`:
    
    Checks a checkbox. Ensures the presence of the `checked` attribute
    
    Example:
    
    ```javascript
    check('#remember-me').then(function() {
      // assert something
    });
    ```
    
    `uncheck`:
    
    Unchecks a checkbox. Ensures the absence of the `checked` attribute
    
    Example:
    
    ```javascript
    uncheck('#remember-me').then(function() {
      // assert something
    });
    ```
    seanpdoyle committed Jan 5, 2015
    Configuration menu
    Copy the full SHA
    92db448 View commit details
    Browse the repository at this point in the history