fix(lint) : no annotation in url
This commit is contained in:
parent
624a9d55dc
commit
212030d5c2
|
|
@ -382,8 +382,7 @@ class HtmlBuilder {
|
||||||
// Annotations can be pushed directly, with a wrong type.
|
// Annotations can be pushed directly, with a wrong type.
|
||||||
annotations: test.annotations.map(a => ({
|
annotations: test.annotations.map(a => ({
|
||||||
type: a.type,
|
type: a.type,
|
||||||
description: a.description ? String(a.description) : a.description,
|
description: a.description ? String(a.description) : a.description
|
||||||
url: a.url ? String(a.url) : a.url
|
|
||||||
})),
|
})),
|
||||||
tags: test.tags,
|
tags: test.tags,
|
||||||
outcome: test.outcome(),
|
outcome: test.outcome(),
|
||||||
|
|
@ -400,8 +399,7 @@ class HtmlBuilder {
|
||||||
// Annotations can be pushed directly, with a wrong type.
|
// Annotations can be pushed directly, with a wrong type.
|
||||||
annotations: test.annotations.map(a => ({
|
annotations: test.annotations.map(a => ({
|
||||||
type: a.type,
|
type: a.type,
|
||||||
description: a.description ? String(a.description) : a.description,
|
description: a.description ? String(a.description) : a.description
|
||||||
url: a.url ? String(a.url) : a.url
|
|
||||||
})),
|
})),
|
||||||
tags: test.tags,
|
tags: test.tags,
|
||||||
outcome: test.outcome(),
|
outcome: test.outcome(),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue