Skip to content
Snippets Groups Projects

Issue #2707689: NodeForm::actions() checks for delete access on new entities

3 files
+ 24
0
Compare changes
  • Side-by-side
  • Inline
Files
3
  • 4990c413
    Issue #3273626 by xjm, dww, Spokje: Drupal Media JavaScript test suite causes... · 4990c413
    Lee Rowlands authored
    Issue #3273626 by xjm, dww, Spokje: Drupal Media JavaScript test suite causes database locks on SQLite
@@ -2,6 +2,7 @@
namespace Drupal\Tests\ckeditor5\FunctionalJavascript;
use Drupal\Core\Database\Database;
use Drupal\editor\Entity\Editor;
use Drupal\file\Entity\File;
use Drupal\filter\Entity\FilterFormat;
@@ -267,6 +268,13 @@ function (ConstraintViolation $v) {
* Tests that failed media embed preview requests inform the end user.
*/
public function testErrorMessages() {
// This test currently frequently causes the SQLite database to lock, so
// skip the test on SQLite until the issue can be resolved.
// @todo https://www.drupal.org/project/drupal/issues/3273626
if (Database::getConnection()->driver() === 'sqlite') {
$this->markTestSkipped('Test frequently causes a locked database on SQLite');
}
// Assert that a request to the `media.filter.preview` route that does not
// result in a 200 response (due to server error or network error) is
// handled in the JavaScript by displaying the expected error message.
Loading