You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 14, 2026. It is now read-only.
Hey! I saw your latest changes, and this starts to be a awsome runner!! I'm impressed.
However I found bugs!
Suite.js. _getReport() function. You are getting the report error from this._err; but this doesn't exist, and are not used inside the code? Same thing for hook.js
addReporter() functions are never invoked.
There is a difference between the Test and Hook in the assert module, so when you are calling the failure assert, this._test._validateFailure it doesn't exist for the Hook.
skip and only doesn't show up in the reporter output
The Count assert. Try to run without a number. Infinity loop and hang.
Throws assert should maybe accept regExp?
Your event handling seems to be broken and / or not completed yet
failed tests are marked red together with the stack traces (also red color). Hard too sread what's going on. And the stack trace red color hard to read too. And what about making the stack trace info more logic?
Not a bug, but after looking at AVA and tape source. Why are you passing this from Suite to test, and not keeping this functions within the test module?
Quick question. Why need for a new Runner prototype for the reporter? And how are you going to add in different reporters?
Hey! I saw your latest changes, and this starts to be a awsome runner!! I'm impressed.
However I found bugs!
this._err;but this doesn't exist, and are not used inside the code? Same thing for hook.jsthis._test._validateFailureit doesn't exist for the Hook.Not a bug, but after looking at AVA and tape source. Why are you passing
thisfrom Suite to test, and not keeping this functions within the test module?Quick question. Why need for a new Runner prototype for the reporter? And how are you going to add in different reporters?