exercism / fsharp-test-runner

GNU Affero General Public License v3.0
4 stars 9 forks source link

Having issue runing test for F# 'Accumulate' exercise #212

Closed pstarliu closed 7 months ago

pstarliu commented 7 months ago

Hi, I think there is an issue with F# online editor test.

I've already submitted a bug using the 'Rpeort a bug' function on the editor, apology for the duplication, but I didn't receive any confirmation of the bug I submitted. So I decided to submit the bug report again here as it's easier for me to follow up and see the progress of the bug.

When I am running tests, it always gives me the error message "An ERROR OCCURED" without details: image

I can't tell if there is any issue with the code, which is relatively simple, and it runs fine inside Visual Studio 2022, so I assume it's a bug in the online editor test runner.

Here is my code if it helps:

module Accumulate

let rec accumulate (func: 'a -> 'b) (input: 'a list): 'b list = 
    match input with
    | [] -> []
    | h :: t -> (func h) :: (accumulate func t)
github-actions[bot] commented 7 months ago

Hello. Thanks for opening an issue on Exercism 🙂

At Exercism we use our Community Forum, not GitHub issues, as the primary place for discussion. That allows maintainers and contributors from across Exercism's ecosystem to discuss your problems/ideas/suggestions without them having to subscribe to hundreds of repositories.

This issue will be automatically closed. Please use this link to copy your GitHub Issue into a new topic on the forum, where we look forward to chatting with you!

If you're interested in learning more about this auto-responder, please read this blog post.

pstarliu commented 7 months ago

I am aware of the existing issue: https://github.com/exercism/fsharp/issues/1022 it might be related.