executeMigration('locale_settings'); } /** * Tests migration of locale variables to locale.settings.yml. */ public function testLocaleSettings() { $config = $this->config('locale.settings'); $this->assertIdentical(TRUE, $config->get('cache_strings')); $this->assertIdentical('languages', $config->get('javascript.directory')); $this->assertConfigSchema(\Drupal::service('config.typed'), 'locale.settings', $config->get()); } }