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
Which is not mutable. Do we add it as a parameter for the runTests() method? I personnaly prefer to have a total report of failing tests instead of debugging them one by one.
Also for readability i would purpose to change the prompt from:
test [TOML] CRLF ... ok
test [TOML] Boolean ... ok
test [TOML] Integer ... ok
test [TOML] Float ... FAILED
to
OK [TOML] CRLF
OK [TOML] Boolean
OK [TOML] Integer
FAIL [TOML] Float
I have some concerns about testing. At the moment everytime we encounter a failing test it exit without testing all the tests cases. This is due to:
https://github.com/denoland/deno_std/blob/master/testing/mod.ts#L12
EDIT: Merged in #307
Which is not mutable. Do we add it as a parameter for the
runTests()
method? I personnaly prefer to have a total report of failing tests instead of debugging them one by one.Also for readability i would purpose to change the prompt from:
to
This makes it easier to read and also easier to parse, like used in the gitlab CI for coverage and so on. Ref: https://docs.gitlab.com/ee/user/project/pipelines/settings.html#test-coverage-parsing
The text was updated successfully, but these errors were encountered: