Jonathan Hedstrom
Jonathan Hedstrom
It's relatively easy to now _properly_ use composer for setting up Drupal 8 during testing. ```json "require-dev": { "composer/installers": "^1.2", "drupal-composer/drupal-scaffold": "2.3.0", "drupal/core": "8.5.x-dev", ``` this will allow for easier...
We use core's `TestMailCollector` for email collection. This simply injects emails into the `key_value` table by way of the `system.test_mail_collector` state. When Behat tests are running concurrently, database lock issues...
This code in `LinkHandler` expects numeric indices ```php $return[] = array( 'options' => $options, 'title' => $value[0], 'uri' => $value[1], ); ``` while the Drupal Extension actually allows passing in...
- Closes #340
- Fixes #326
Tests are currently failing on HHVM. I'm not sure if it's worth fixing, or simpler just to remove that from the test matrix.
There is an open PR in BrowserKit to follow meta refresh tags (https://github.com/symfony/symfony/pull/27118). Once this is merged, it would be nice to have a configurable parameter for `Goutte` to enable...
Not sure how much longer we need to maintain Drupal 7 support, but the tests are failing so should either be updated to work, or removed...
Subcontexts were deprecated in #518. This is a ticket to remove that code before v4.1. This will also resolve #487.