executeMigration('d6_node_settings'); } /** * Tests Drupal 6 node settings to Drupal 8 migration. */ public function testNodeSettings() { $config = $this->config('node.settings'); $this->assertIdentical(FALSE, $config->get('use_admin_theme')); $this->assertConfigSchema(\Drupal::service('config.typed'), 'node.settings', $config->get()); } }