Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / tests / Drupal / FunctionalJavascriptTests / LegacyJavascriptTestBase.php
index b3baf6e2d377b6793728bfb1dd70394215f7ee07..70869d08b4e156a0297c0cbbd451c145b4d1383d 100644 (file)
@@ -2,26 +2,14 @@
 
 namespace Drupal\FunctionalJavascriptTests;
 
-use Zumba\Mink\Driver\PhantomJSDriver;
-
 /**
  * Runs a browser test using PhantomJS.
  *
- * Base class for testing browser interaction implemented in JavaScript.
+ * @deprecated in Drupal 8.6.0, will be removed before Drupal 9.0.0.
+ * Use \Drupal\FunctionalJavascriptTests\WebDriverTestBase instead
+ *
+ * BC layer for testing browser interaction implemented in JavaScript.
  */
 abstract class LegacyJavascriptTestBase extends JavascriptTestBase {
 
-  /**
-   * {@inheritdoc}
-   */
-  protected $minkDefaultDriverClass = PhantomJSDriver::class;
-
-  /**
-   * {@inheritdoc}
-   */
-  public function assertSession($name = NULL) {
-    // Return a WebAssert that supports status code and header assertions.
-    return new JSWebAssert($this->getSession($name), $this->baseUrl);
-  }
-
 }