/**
  * @Then the store should be available in the :name language
  */
 public function storeShouldBeAvailableInLanguage($name)
 {
     $doesLocaleExist = $this->indexPage->isSingleResourceOnPage(['name' => $name]);
     Assert::true($doesLocaleExist, sprintf('Locale %s should exist but it does not', $name));
 }