remove redundant await
Signed-off-by: Sri Harsha <12621691+harsha509@users.noreply.github.com>
This commit is contained in:
parent
a1d32d997c
commit
63c96c878d
|
|
@ -104,7 +104,7 @@ class ReporterV2Wrapper implements ReporterV2 {
|
||||||
}
|
}
|
||||||
|
|
||||||
async onEnd(result: FullResult) {
|
async onEnd(result: FullResult) {
|
||||||
return await this._reporter.onEnd?.(result);
|
return this._reporter.onEnd?.(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
async onExit() {
|
async onExit() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue