Legend
- : Displays either a toggle icon for a test that is composed of several tests, or a depth of a simple test.
- Test result: The high-level result of a test of a group of tests. This signifies whether the test passed or not.
- Description: A short description of what the test or a group of tests did.
- Result: The concrete result of a test or a group of tests. Can be one of:
SUCCESS - - The test was expected to pass and it did.
FAILURE - - The test was expected to pass but it failed.
UXSUCCESS - - The test was expected to fail but it succeeded.
XFAILURE - - The test was expected to fail and it did.
ERROR - - There was an unexpected error while running the test.
{% assign cat_name = page.categories | sample | downcase | replace:" ", "-" %}
Other test runs
{% assign device_name = page.id | split:"/" | shift | shift | shift | sample %}
{% for result in site.results %}
{% assign file_name = result.id | split:"/" | shift | shift %}
{% assign result_name = file_name | shift | sample %}
{% assign category_name = file_name | reverse | shift | sample %}
{% if device_name == result_name and category_name != cat_name %}
{{ category_name }}
{% endif %}
{% endfor %}