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

fix: jest prerelease support (#5015) #5016

Merged
merged 4 commits into from
Sep 29, 2024
Merged

Commits on Sep 17, 2024

  1. fix: jest prerelease support (stryker-mutator#5015)

    Previously, stryker failed `jasmine2-setup-coverage-analysis.cts`
    
        runTest ... node_modules/jest-runner/build/index.js:340:7), Cannot read
        properties of undefined (reading 'getEnv') TypeError: Cannot read properties
        of undefined (reading 'getEnv')
    
    When using the latest jest prerelease version (30.0.0-alpha.6)
    
    This commit fixes the error by using `semver.coerce`:
    
        > semver.satisfies('30.0.0-alpha.6', '>=27')
        false
        > semver.satisfies(semver.coerce('30.0.0-alpha.6'), '>=27')
        true
    rriski committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    04ed6d9 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2024

  1. Configuration menu
    Copy the full SHA
    b8bc358 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6617feb View commit details
    Browse the repository at this point in the history
  3. Add unit tests

    nicojs committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    d9d16aa View commit details
    Browse the repository at this point in the history