Sha256: 80bf144e1fceb836bb1929363b2c2505abffd9f48f91f08a7b86f2ff88c21531

Contents?: true

Size: 1.08 KB

Versions: 6

Compression:

Stored size: 1.08 KB

Contents

Feature: Using the Runner directly
  Scenario: Succeed
    Given I have the following runner options:
      """
      :jasmine_config: spec/jasmine/success/success.yml
      :reporters:
      - [ 'File', 'spec/report.txt' ]
      """
    When I get a runner
      And I run the runner
    Then the runner should have an exit status of 0
    And the report file "spec/report.txt" should have 1 total, 0 failures, no console usage

  Scenario: JavaScript Error
    Given I have the following runner options:
      """
      :jasmine_config: spec/jasmine/success_with_error/success_with_error.yml
      """
    When I get a runner
      And I run the runner
    Then the runner should have an exit status of 1

  Scenario: Failure
    Given I have the following runner options:
      """
      :jasmine_config: spec/jasmine/failure/failure.yml
      :reporters:
      - [ 'File', 'spec/report.txt' ]
      """
    When I get a runner
      And I run the runner
    Then the runner should have an exit status of 1
    And the report file "spec/report.txt" should have 1 total, 1 failure, no console usage

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
jasmine-headless-webkit-firstbanco-0.9.0.rc.5 features/runner.feature
jasmine-headless-webkit-firstbanco-0.9.0.rc.4 features/runner.feature
jasmine-headless-webkit-firstbanco-0.9.0.rc.3 features/runner.feature
jasmine-headless-webkit-firstbanco-0.9.0.rc.2 features/runner.feature
jasmine-headless-webkit-0.9.0.rc.2 features/runner.feature
jasmine-headless-webkit-0.9.0.rc1 features/runner.feature