diff --git a/tests/src/Kernel/PathautoKernelTest.php b/tests/src/Kernel/PathautoKernelTest.php
index 1d5db68..7633699 100644
--- a/tests/src/Kernel/PathautoKernelTest.php
+++ b/tests/src/Kernel/PathautoKernelTest.php
@@ -563,6 +563,20 @@ class PathautoKernelTest extends KernelTestBase {
     $this->assertEntityAlias($node, '/content/testalias');
   }
 
+  /**
+   * Tests that node can be safely deleted.
+   */
+  public function testNodeDelete() {
+    $node = $this->drupalCreateNode([
+      'langcode' => 'en',
+    ]);
+    $node->addTranslation('fr', [
+      'title' => 'Node fr title',
+    ])->save();
+
+    $node->delete();
+  }
+
   /**
    * Creates a node programmatically.
    *
