Skip to content

Commit 56dd916

Browse files
authored
Merge branch 'develop' into MQE-1118
2 parents ecf02f2 + 229b66e commit 56dd916

22 files changed

+720
-327
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
Magento Functional Testing Framework Changelog
22
================================================
33

4+
2.3.4
5+
-----
6+
### Fixes
7+
* MagentoWebDriver overrides `parent::_after()` function and remaps to `runAfter()`, necessary to solve compatibility issues in Codeception `2.3.x`.
8+
9+
2.3.3
10+
-----
11+
### Fixes
12+
* Defaults in `etc/config/functional.suite.dist.yml` changed: window-size to `1280x1024`, and removed `--ingonito` flag.
13+
14+
2.3.2
15+
-----
16+
### Fixes
17+
* The `executeJs` `function` no longer escapes persisted variables referenced via `$$persisted.key$$`.
18+
* Extending a test no longer fails to generate the parent `test`'s `before`/`after` blocks if the parent was skipped.
19+
20+
2.3.1
21+
-----
22+
### Enhancements
23+
* Maintainability
24+
* `mftf build:project` now copies over the `command.php` file into the parent Magento installation, if detected.
25+
426
2.3.0
527
-----
628
### Enhancements

bin/mftf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ try {
2929
try {
3030
$application = new Symfony\Component\Console\Application();
3131
$application->setName('Magento Functional Testing Framework CLI');
32-
$application->setVersion('2.3.0');
32+
$application->setVersion('2.3.4');
3333
/** @var \Magento\FunctionalTestingFramework\Console\CommandListInterface $commandList */
3434
$commandList = new \Magento\FunctionalTestingFramework\Console\CommandList;
3535
foreach ($commandList->getCommands() as $command) {

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/magento2-functional-testing-framework",
33
"description": "Magento2 Functional Testing Framework",
44
"type": "library",
5-
"version": "2.3.0",
5+
"version": "2.3.4",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {

0 commit comments

Comments
 (0)