-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #407 from magento-devdocs/db_mftf_testlist_md
Adding topic for Action Group reference.
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
layout: full-width | ||
title: MFTF Tests | ||
--- | ||
<style> | ||
.mftf-dl { | ||
margin-bottom: 2.5em; | ||
} | ||
dl dt{ | ||
font-weight:500; | ||
} | ||
.mftf-test-link { | ||
font-weight: normal; | ||
} | ||
</style> | ||
The Magento Functional Testing Framework runs tests on every Module within Magento. These files are stored within each Module folder in the Magento repo. | ||
This page lists all those tests so that developers can have a good sense of what is covered. | ||
|
||
{% assign mftf = site.data.mftf | group_by: "module" | sort: "name" %} | ||
|
||
{% for item in mftf %} | ||
|
||
### {{ item.name }} | ||
{% for file in item.items %} | ||
#### [{{ file.filename }}]({{file.repo}}) | ||
{: .mftf-test-link} | ||
|
||
{% for test in file.tests %} | ||
{{test.testname}} | ||
: {{test.description}} | ||
{: .mftf-dl} | ||
{% endfor %} | ||
{% endfor %} | ||
{% endfor %} |