reverted results-meta.ts (changed because ran prettier --check "src/**/*.js" without && eslint src)

pull/124/head
Ivan Hernandez 2021-05-27 18:23:15 +02:00
parent 57dcd5fa05
commit d495a2006c
1 changed files with 3 additions and 1 deletions

View File

@ -104,7 +104,9 @@ export class TestMeta extends Meta {
}
get summary(): string {
const dPart = this.isSkipped() ? '' : ` in ${timeHelper(this.duration)}`;
const dPart = this.isSkipped()
? ''
: ` in ${timeHelper(this.duration)}`;
return `${this.mark} **${this.title}** - ${this.result}${dPart}`;
}