Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / simpletest / tests / src / FunctionalJavascript / JavascriptGetDrupalSettingsTest.php
diff --git a/web/core/modules/simpletest/tests/src/FunctionalJavascript/JavascriptGetDrupalSettingsTest.php b/web/core/modules/simpletest/tests/src/FunctionalJavascript/JavascriptGetDrupalSettingsTest.php
deleted file mode 100644 (file)
index 0048159..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-<?php
-
-namespace Drupal\Tests\simpletest\FunctionalJavascript;
-
-use Drupal\FunctionalJavascriptTests\JavascriptTestBase;
-
-/**
- * Tests Drupal settings retrieval in JavascriptTestBase tests.
- *
- * @group javascript
- */
-class JavascriptGetDrupalSettingsTest extends JavascriptTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = ['test_page_test'];
-
-  /**
-   * Tests retrieval of Drupal settings.
-   *
-   * @see \Drupal\FunctionalJavascriptTests\JavascriptTestBase::getDrupalSettings()
-   */
-  public function testGetDrupalSettings() {
-    $this->drupalLogin($this->drupalCreateUser());
-    $this->drupalGet('test-page');
-
-    // Check that we can read the JS settings.
-    $js_settings = $this->getDrupalSettings();
-    $this->assertSame('azAZ09();.,\\\/-_{}', $js_settings['test-setting']);
-
-    // Dynamically change the setting using Javascript.
-    $script = <<<EndOfScript
-(function () {
-  drupalSettings['test-setting'] = 'foo';
-})();
-EndOfScript;
-
-    $this->getSession()->evaluateScript($script);
-
-    // Check that the setting has been changed.
-    $js_settings = $this->getDrupalSettings();
-    $this->assertSame('foo', $js_settings['test-setting']);
-  }
-
-}