Daniel Mita
                                            Daniel Mita
                                        
                                    FYI, I have not tested this change yet as I'm in the middle of writing something else. Went to the table to check something and saw things didn't look right....
Reopened as the issue is still present. It looks like the changes in the PR have not come through to the live site.
Making a start on this. Using `TAP::Harness` is a good idea, but would ideally like to allow support for `App::Yath`/`Test2::Harness` as well.
I'm going to investigate potentially using `Test2::API` for this, I believe its available as a core module.
Poking around with the details of `TestController` and figuring out how to piece everything together (I don't have much experience with writing VSCode plugins). Looking to make use of `Test2::API::intercept`:...
```perl use Test2::API qw; use JSON::PP qw; my $events = intercept_deep { do $ARGV[0]; }; say encode_json($events->squash_info->flatten); ``` Example test file as input for above: ```perl use strict; use warnings;...
I'm pretty sure you can do it with 1 git repo, but I believe on Docker Hub you'll need an automated build for each language. You put in the image...
I've kept the test automated builds up (to be honest, I'd forgotten about them!) and they've been building successfully since their creation 🙂 https://hub.docker.com/r/mienaikage/glot-test/builds/ https://hub.docker.com/r/mienaikage/glot-test-2/builds/
I may look into codemirror at some point, for syntax highlighting on exercism.org. (Issue raised in https://github.com/exercism/raku/issues/520).
Apologies for the delay, a workflow would be welcome if this would be something that can be automated. I don't usually merge to this repo directly, I open a PR...