Skip to content

Commit b01eeb0

Browse files
committed
Merge branch 'develop' of github.com:magento-engcom/magento2ce into develop-prs
2 parents 32c6edf + 840d914 commit b01eeb0

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

dev/tests/acceptance/RoboFile.php

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class RoboFile extends \Robo\Tasks
1414
use Robo\Task\Base\loadShortcuts;
1515

1616
/**
17-
* Duplicate the Example configuration files used to customize the Project for customization
17+
* Duplicate the Example configuration files used to customize the Project for customization.
1818
*
1919
* @return void
2020
*/
@@ -26,8 +26,8 @@ function cloneFiles()
2626
}
2727

2828
/**
29-
* Clone the Example configuration files
30-
* Build the Codeception project
29+
* Duplicate the Example configuration files for the Project.
30+
* Build the Codeception project.
3131
*
3232
* @return void
3333
*/
@@ -38,9 +38,9 @@ function buildProject()
3838
}
3939

4040
/**
41-
* Generate all Tests command.
41+
* Generate all Tests in PHP.
4242
*
43-
* @param string[] $opts
43+
* @param array $opts
4444
* @return void
4545
*/
4646
function generateTests($opts = ['config' => null, 'env' => 'chrome'])
@@ -51,11 +51,11 @@ function generateTests($opts = ['config' => null, 'env' => 'chrome'])
5151
}
5252

5353
/**
54-
* Generate a suite based on name(s) passed in as args
54+
* Generate a suite based on name(s) passed in as args.
5555
*
56-
* @param string[] args
57-
* @return void
56+
* @param array $args
5857
* @throws Exception
58+
* @return void
5959
*/
6060
function generateSuite(array $args)
6161
{
@@ -72,7 +72,7 @@ function generateSuite(array $args)
7272
}
7373

7474
/**
75-
* Run all Functional tests using the Chrome environment
75+
* Run all Functional tests using the Chrome environment.
7676
*
7777
* @return void
7878
*/
@@ -82,7 +82,7 @@ function chrome()
8282
}
8383

8484
/**
85-
* Run all Functional tests using the FireFox environment
85+
* Run all Functional tests using the FireFox environment.
8686
*
8787
* @return void
8888
*/
@@ -92,7 +92,7 @@ function firefox()
9292
}
9393

9494
/**
95-
* Run all Functional tests using the PhantomJS environment
95+
* Run all Functional tests using the PhantomJS environment.
9696
*
9797
* @return void
9898
*/
@@ -102,7 +102,7 @@ function phantomjs()
102102
}
103103

104104
/**
105-
* Run all Functional tests using the Chrome Headless environment
105+
* Run all Functional tests using the Chrome Headless environment.
106106
*
107107
* @return void
108108
*/
@@ -112,7 +112,7 @@ function headless()
112112
}
113113

114114
/**
115-
* Run all Tests with the specified @group tag, excluding @group 'skip', using the Chrome environment
115+
* Run all Tests with the specified @group tag, excluding @group 'skip', using the Chrome environment.
116116
*
117117
* @param string $args
118118
* @return void
@@ -123,7 +123,7 @@ function group($args = '')
123123
}
124124

125125
/**
126-
* Run all Functional tests located under the Directory Path provided using the Chrome environment
126+
* Run all Functional tests located under the Directory Path provided using the Chrome environment.
127127
*
128128
* @param string $args
129129
* @return void
@@ -134,7 +134,7 @@ function folder($args = '')
134134
}
135135

136136
/**
137-
* Run all Tests marked with the @group tag 'example', using the Chrome environment
137+
* Run all Tests marked with the @group tag 'example', using the Chrome environment.
138138
*
139139
* @return void
140140
*/
@@ -146,7 +146,7 @@ function example()
146146
/**
147147
* Generate the HTML for the Allure report based on the Test XML output - Allure v1.4.X
148148
*
149-
* @return void
149+
* @return \Robo\Result
150150
*/
151151
function allure1Generate()
152152
{
@@ -156,15 +156,15 @@ function allure1Generate()
156156
/**
157157
* Generate the HTML for the Allure report based on the Test XML output - Allure v2.3.X
158158
*
159-
* @return void
159+
* @return \Robo\Result
160160
*/
161161
function allure2Generate()
162162
{
163163
return $this->_exec('allure generate tests/_output/allure-results/ --output tests/_output/allure-report/ --clean');
164164
}
165165

166166
/**
167-
* Open the HTML Allure report - Allure v1.4.xX
167+
* Open the HTML Allure report - Allure v1.4.X
168168
*
169169
* @return void
170170
*/
@@ -212,7 +212,7 @@ function allure2Report()
212212
}
213213

214214
/**
215-
* Run the Pre-Install Check Script
215+
* Run the Pre-Install system check script.
216216
*
217217
* @return void
218218
*/

0 commit comments

Comments
 (0)