We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I run elm-test --report json elm-test will find all files in my test folder and run them.
elm-test --report json
Unfortunatly the testCompleted event, doesn't let us know which file it is from.
{ "event": "testCompleted", "status": "fail", "labels": [ "RoutingTests", "Route.fromUrl", "Parsing hash: \"#login\"" ], "failures": [ { "given": null, "message": "Expect.equal", "reason": { "type": "Equality", "data": { "expected": "Just Login", "actual": "Nothing", "comparison": "Expect.equal" } } } ], "duration": "3" }
The text was updated successfully, but these errors were encountered:
Can the file name be extracted from the first label? Is it safe to do so? Thanks.
elmRoot + "/tests/" + output.labels[0].replace(/\./g, '/') + ".elm"
Sorry, something went wrong.
No branches or pull requests
If I run
elm-test --report json
elm-test will find all files in my test folder and run them.Unfortunatly the testCompleted event, doesn't let us know which file it is from.
The text was updated successfully, but these errors were encountered: