We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afb339d commit 7a8b9cbCopy full SHA for 7a8b9cb
setup/src/Magento/Setup/Test/Unit/Console/Command/GenerateFixturesCommandTest.php
@@ -48,4 +48,12 @@ public function testExecuteInvalidLanguageArgument()
48
$commandTester = new CommandTester($this->command);
49
$commandTester->execute([]);
50
}
51
+
52
+ public function testSkipReindexOption()
53
+ {
54
+ $this->fixtureModel->expects($this->never())->method('reindex');
55
56
+ $commandTester = new CommandTester($this->command);
57
+ $commandTester->execute(['profile' => 'path_to_profile.xml', '--skip-reindex' => true]);
58
+ }
59
0 commit comments