We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f676da2 commit 8198460Copy full SHA for 8198460
lib/codeceptjs/realtime-reporter.helper.js
@@ -263,8 +263,8 @@ class RealtimeReporterHelper extends Helper {
263
if (!isEqualMetaStep(this.step.metaStep, this.metaStep)) {
264
// append changed metastep to list
265
// NOTE this.metaStep can be null which means "no metastep"
266
- this.step.metaStep.id = nanoid();
267
if (this.step.metaStep) {
+ this.step.metaStep.id = nanoid();
268
wsEvents.rtr.metaStepChanged(this._mapMetaStep(this.step.metaStep, true));
269
}
270
this.metaStep = this.step.metaStep;
0 commit comments