node-test-runner: Internal error result from 'elm make'

Using: 0.19.0-rev3

elm.json

{
    "type": "package",
    "name": "romariolopezc/hmac-sha1",
    "summary": "Compute HMAC with SHA-1 hash function",
    "license": "MIT",
    "version": "1.0.0",
    "exposed-modules": [
        "HmacSha1"
    ],
    "elm-version": "0.19.0 <= v < 0.20.0",
    "dependencies": {
        "TSFoster/elm-sha1": "1.0.0 <= v < 2.0.0",
        "elm/bytes": "1.0.7 <= v < 2.0.0",
        "elm/core": "1.0.0 <= v < 2.0.0",
        "ktonon/elm-word": "2.1.2 <= v < 3.0.0",
        "waratuman/elm-coder": "3.0.0 <= v < 4.0.0"
    },
    "test-dependencies": {
        "elm-explorations/test": "1.2.0 <= v < 2.0.0"
    }
}

I did:

$ yarn global add elm-test
$ elm-test init
$ elm-test
elm-test internal error: got an unexpected result from 'elm make' when validating transitive dependencies.  Please report this at https://github.com/rtfeldman/node-test-runner/issues

About this issue

  • Original URL
  • State: closed
  • Created 6 years ago
  • Reactions: 4
  • Comments: 18 (1 by maintainers)

Commits related to this issue

Most upvoted comments

This actually helped, I don’t know why elm/core was installing 1.0.0 rather than 1.0.2, I updated the minimal version and it now works.

$ elm-test 

elm-test 0.19.0-rev4
--------------------

Running 6 tests. To reproduce these results, run: elm-test --fuzz 100 --seed 14734423892685 /home/rhubscher/elm/elm-basic-auth/tests/Tests.elm


TEST RUN PASSED

Duration: 117 ms
Passed:   6
Failed:   0

This happened when I added elm/bytes as a dependency