Skip to content

Commit 4d6dbec

Browse files
authored
Merge pull request #407 from magento-devdocs/db_mftf_testlist_md
Adding topic for Action Group reference.
2 parents 553a763 + eb0b1cd commit 4d6dbec

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

docs/mftf-tests.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
layout: full-width
3+
title: MFTF Tests
4+
---
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>
16+
The Magento Functional Testing Framework runs tests on every Module within Magento. These files are stored within each Module folder in the Magento repo.
17+
This page lists all those tests so that developers can have a good sense of what is covered.
18+
19+
{% assign mftf = site.data.mftf | group_by: "module" | sort: "name" %}
20+
21+
{% for item in mftf %}
22+
23+
### {{ item.name }}
24+
{% for file in item.items %}
25+
#### [{{ file.filename }}]({{file.repo}})
26+
{: .mftf-test-link}
27+
28+
{% for test in file.tests %}
29+
{{test.testname}}
30+
: {{test.description}}
31+
{: .mftf-dl}
32+
{% endfor %}
33+
{% endfor %}
34+
{% endfor %}

0 commit comments

Comments
 (0)