executeMigration('file_settings'); } /** * Tests migration of file variables to file.settings.yml. */ public function testFileSettings() { $config = $this->config('file.settings'); $this->assertSame('textfield', $config->get('description.type')); $this->assertSame(256, $config->get('description.length')); $this->assertSame('sites/default/files/icons', $config->get('icon.directory')); $this->assertConfigSchema(\Drupal::service('config.typed'), 'file.settings', $config->get()); } }