mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-26 23:22:07 +03:00
15 lines
616 B
Plaintext
15 lines
616 B
Plaintext
|
def node: " at \(.target | join(" ")):\n\n \(.failureSummary | gsub("\n"; "\n "))";
|
||
|
def violation: " \(.id): \(.impact) violation with \(.nodes | length) instances.\n\n\(.nodes | map(node) | join("\n\n"))";
|
||
|
|
||
|
"Tested \(.url) with \(.testEngine.name) \(.testEngine.version) at \(.timestamp)
|
||
|
|
||
|
Agent information:
|
||
|
|
||
|
\(.testEnvironment | to_entries | map("\(.key): \(.value)") | join("\n "))
|
||
|
|
||
|
Summary: \(.passes | length) passes | \(.violations | length) violations | \(.incomplete | length) incomplete | \(.inapplicable | length) inapplicable
|
||
|
|
||
|
Violations:
|
||
|
|
||
|
\(.violations | map(violation) | join("\n\n"))
|
||
|
"
|