Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-02 | refactor: use '--reporter' and '--junit-path' flags for 'deno test' (#20031) | Bartek Iwańczuk | |
This commit adds "--reporter" and "--junit-path" flags to "deno test" subcommand instead of using "--dot" and "--junit" flags. | |||
2023-08-02 | feat(cli): Add dot test reporter (#19804) | Bartek Iwańczuk | |
This commit adds a "dot" reporter to "deno test" subcommand, that can be activated using "--dot" flag. It provides a concise output using: - "." for passing test - "," for ignored test - "!" for failing test User output is silenced and not printed to the console. In non-TTY environments each result is printed on a separate line. | |||
2023-07-27 | refactor(cli/test): move reporters to a separate directory (#19957) | Bartek Iwańczuk | |
Just a small cleanup that will make #19804 easier. |