mirror of
https://github.com/zaphar/test-tap.git
synced 2025-07-21 20:19:49 -04:00
17 lines
265 B
JavaScript
17 lines
265 B
JavaScript
/** @interface */
|
|
class TapRenderer {
|
|
/** Renders output for the test results
|
|
* @param {string} text
|
|
*/
|
|
out(text) {
|
|
}
|
|
|
|
/** Diagnostic formatter for TAP Output.
|
|
*
|
|
* @param {Array<string>} lines
|
|
*/
|
|
diag(lines) {
|
|
}
|
|
}
|
|
|