Skip to content

Commit dd9123b

Browse files
committed
B2B-1776: Update Integration Test Framework to Support Integration Tests Builds to Work Against Actual Aurora Db
1 parent 9cf41ac commit dd9123b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ApplicationTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,14 @@ public function testInstall(
159159
if ($isExceptionExpected) {
160160
$this->expectException(DomainException::class);
161161
$this->expectExceptionMessage('"command" must be present in post install setup command arrays');
162+
} else {
163+
$this->shell
164+
->expects($this->at($index + 1))
165+
->method('execute')
166+
->with(
167+
PHP_BINARY . ' -f %s cache:disable -vvv --bootstrap=%s',
168+
[BP . '/bin/magento', $this->getInitParamsQuery($tmpDir)]
169+
);
162170
}
163171

164172
$subject->install(false);

0 commit comments

Comments
 (0)