review feedback

This commit is contained in:
Max Schmitt 2024-12-13 11:29:19 -08:00
parent d95c611c59
commit 4f8536521b

View file

@ -66,7 +66,7 @@ class Fixture {
} }
await testInfo._runAsStage({ await testInfo._runAsStage({
title: `fixture: ${this._setupDescription.title}`, title: `fixture: ${this.registration.customTitle ?? this.registration.name}`,
runnable: { ...runnable, fixture: this._setupDescription }, runnable: { ...runnable, fixture: this._setupDescription },
stepInfo: this._stepInfo, stepInfo: this._stepInfo,
}, async () => { }, async () => {
@ -131,7 +131,7 @@ class Fixture {
// time remaining in the time slot. This avoids cascading timeouts. // time remaining in the time slot. This avoids cascading timeouts.
if (!testInfo._timeoutManager.isTimeExhaustedFor(fixtureRunnable)) { if (!testInfo._timeoutManager.isTimeExhaustedFor(fixtureRunnable)) {
await testInfo._runAsStage({ await testInfo._runAsStage({
title: `fixture: ${this._setupDescription.title}`, title: `fixture: ${this.registration.customTitle ?? this.registration.name}`,
runnable: fixtureRunnable, runnable: fixtureRunnable,
stepInfo: this._stepInfo, stepInfo: this._stepInfo,
}, async () => { }, async () => {