Skip to content

Commit af5fe4f

Browse files
committed
adding test reference file.
1 parent 7d925af commit af5fe4f

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

docs/mftf-tests.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,33 @@
22
layout: full-width
33
title: MFTF Tests
44
---
5-
5+
<style>
6+
.mftf-dl {
7+
margin-bottom: 2.5em;
8+
}
9+
dl dt{
10+
font-weight:500;
11+
}
12+
.mftf-test-link {
13+
font-weight: normal;
14+
}
15+
</style>
616
The Magento Functional Testing Framework runs tests on every Module within Magento. These files are stored within each Module folder in the Magento repo.
717
This page lists all those tests so that developers can have a good sense of what is covered.
818

919
{% assign mftf = site.data.mftf | group_by: "module" | sort: "name" %}
1020

1121
{% for item in mftf %}
1222

13-
### {{ item.name }}
23+
### {{ item.name }}
1424
{% for file in item.items %}
1525
#### [{{ file.filename }}]({{file.repo}})
26+
{: .mftf-test-link}
1627

1728
{% for test in file.tests %}
1829
{{test.testname}}
1930
: {{test.description}}
20-
31+
{: .mftf-dl}
2132
{% endfor %}
2233
{% endfor %}
2334
{% endfor %}

0 commit comments

Comments
 (0)