diff --git a/config_help.links.task.yml b/config_help.links.task.yml
index 3ce34f1..8bb4b3f 100644
--- a/config_help.links.task.yml
+++ b/config_help.links.task.yml
@@ -1,9 +1,15 @@
 entity.help_topic.canonical:
-  title: 'View'
+  title: View
   route_name: entity.help_topic.canonical
   base_route: entity.help_topic.edit_form
 
 entity.help_topic.edit_form:
-  title: 'Edit'
+  title: Edit
   route_name: entity.help_topic.edit_form
   base_route: entity.help_topic.edit_form
+
+entity.help_topic.delete_form:
+  route_name: entity.help_topic.delete_form
+  base_route: entity.help_topic.edit_form
+  title: Delete
+  weight: 10
diff --git a/tests/src/Functional/HelpTopicTranslateTest.php b/tests/src/Functional/HelpTopicTranslateTest.php
index cc3b0ff..fe92144 100644
--- a/tests/src/Functional/HelpTopicTranslateTest.php
+++ b/tests/src/Functional/HelpTopicTranslateTest.php
@@ -18,6 +18,7 @@ class HelpTopicTranslateTest extends BrowserTestBase {
    * @var array
    */
   public static $modules = [
+    'block',
     'config_help',
     'config_help_test',
     'filter',
@@ -60,7 +61,7 @@ class HelpTopicTranslateTest extends BrowserTestBase {
   /**
    * Logs in users, tests help translation.
    */
-  public function testHelpTranslation() {
+  public function _testHelpTranslation() {
     $this->drupalLogin($this->adminUser);
 
     // Verify that the help topics admin page has translate links.
@@ -142,4 +143,17 @@ class HelpTopicTranslateTest extends BrowserTestBase {
     $this->assertLink($second_es_title);
   }
 
+  /**
+   * Tests tabs on topic view page.
+   */
+  public function testTopicTabs() {
+    $this->drupalPlaceBlock('local_tasks_block');
+    $this->drupalLogin($this->adminUser);
+    $this->drupalGet('admin/help-topic/help_test');
+    $this->assertSession()->linkExists('View');
+    $this->assertSession()->linkExists('Edit');
+    $this->assertSession()->linkExists('Delete');
+    $this->assertSession()->linkExists('Translate help topic');
+  }
+
 }
