Skip to content

Commit e791d01

Browse files
committed
Adding testfile to repo.
1 parent ec4b8b7 commit e791d01

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

docs/mftf-tests.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: full-width
3+
title: MFTF Tests
4+
---
5+
6+
The Magento Functional Testing Framework runs tests on every Module within Magento. These files are stored within each Module folder in the Magento repo.
7+
This page lists all those tests so that developers have a good sense of what is covered.
8+
9+
{% assign mftf = site.data.mftf | group_by: "module" %}
10+
{% assign sorted = mftf | sort: "name" %}
11+
12+
{% for module in sorted %}
13+
14+
### {{ module.name }} Module
15+
16+
{% assign tests = module.items | sort: "filename" %}
17+
{% for item in tests %}
18+
19+
**{{ item.testname }}**
20+
21+
- File name: [{{ item.filename }}.xml]({{ item.link }})
22+
- Story: {{ item.stories }}
23+
24+
{{ item.description}}
25+
26+
{% endfor %}
27+
{% endfor %}

0 commit comments

Comments
 (0)