mirror of
https://github.com/TheBinaryNinja/tvapp2.git
synced 2026-06-04 18:35:41 -04:00
build(deps): bump playwright from 1.49.1 to 1.50.1
This commit is contained in:
7
node_modules/playwright/lib/reporters/teleEmitter.js
generated
vendored
7
node_modules/playwright/lib/reporters/teleEmitter.js
generated
vendored
@@ -102,7 +102,7 @@ class TeleReporterEmitter {
|
||||
params: {
|
||||
testId: test.id,
|
||||
resultId: result[this._idSymbol],
|
||||
step: this._serializeStepEnd(step)
|
||||
step: this._serializeStepEnd(step, result)
|
||||
}
|
||||
});
|
||||
}
|
||||
@@ -245,11 +245,12 @@ class TeleReporterEmitter {
|
||||
location: this._relativeLocation(step.location)
|
||||
};
|
||||
}
|
||||
_serializeStepEnd(step) {
|
||||
_serializeStepEnd(step, result) {
|
||||
return {
|
||||
id: step[this._idSymbol],
|
||||
duration: step.duration,
|
||||
error: step.error
|
||||
error: step.error,
|
||||
attachments: step.attachments.map(a => result.attachments.indexOf(a))
|
||||
};
|
||||
}
|
||||
_relativeLocation(location) {
|
||||
|
||||
Reference in New Issue
Block a user