fix(list reporter): populate testIndex
This commit is contained in:
parent
a34f3b9270
commit
ef4b5a4121
|
|
@ -54,11 +54,13 @@ class ListReporter extends BaseReporter {
|
||||||
|
|
||||||
override onTestBegin(test: TestCase, result: TestResult) {
|
override onTestBegin(test: TestCase, result: TestResult) {
|
||||||
super.onTestBegin(test, result);
|
super.onTestBegin(test, result);
|
||||||
|
|
||||||
|
const index = String(this._resultIndex.size + 1);
|
||||||
|
this._resultIndex.set(result, index);
|
||||||
|
|
||||||
if (!isTTY)
|
if (!isTTY)
|
||||||
return;
|
return;
|
||||||
this._maybeWriteNewLine();
|
this._maybeWriteNewLine();
|
||||||
const index = String(this._resultIndex.size + 1);
|
|
||||||
this._resultIndex.set(result, index);
|
|
||||||
this._testRows.set(test, this._lastRow);
|
this._testRows.set(test, this._lastRow);
|
||||||
const prefix = this._testPrefix(index, '');
|
const prefix = this._testPrefix(index, '');
|
||||||
const line = colors.dim(formatTestTitle(this.config, test)) + this._retrySuffix(result);
|
const line = colors.dim(formatTestTitle(this.config, test)) + this._retrySuffix(result);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue