-
-
Notifications
You must be signed in to change notification settings - Fork 7
Closed
Description
Somehow the tests are failing now in the automated test runner. Here I have a screenshot of my solution to rna-transcription
failing in the automated runner. I dumped it into a new test directorty here though, and I don't get the syntax error
result.json. I get a passing results.json
. The opacity of the website's process of running these exercises makes it very hard for me to figure out why this is happening when all of our tests are passing.
Here is a dump of the results.json
I get when I run the test-runner tests locally including my rna-transcription exercise.
{"version": 2, "status": "pass", "tests": [{"name": "Empty RNA sequence", "status": "pass", "output": null, "test_code": "(equal? (dna->rna \"\") \"\")\n"}, {"name": "RNA complement of cytosine is guanine", "status": "pass", "output": null, "test_code": "(equal? (dna->rna \"C\") \"G\")\n"}, {"name": "RNA complement of guanine is cytosine", "status": "pass", "output": null, "test_code": "(equal? (dna->rna \"G\") \"C\")\n"}, {"name": "RNA complement of thymine is adenine", "status": "pass", "output": null, "test_code": "(equal? (dna->rna \"T\") \"A\")\n"}, {"name": "RNA complement of adenine is uracil", "status": "pass", "output": null, "test_code": "(equal? (dna->rna \"A\") \"U\")\n"}, {"name": "RNA complement", "status": "pass", "output": null, "test_code": "(equal? (dna->rna \"ACGTGGTCTTAA\") \"UGCACCAGAAUU\")\n"}]}
Metadata
Metadata
Assignees
Labels
No labels