diff --git a/src/Tests/LingotekNodeBulkFormPagerTest.php b/src/Tests/Form/LingotekNodeBulkFormTest.php
similarity index 59%
rename from src/Tests/LingotekNodeBulkFormPagerTest.php
rename to src/Tests/Form/LingotekNodeBulkFormTest.php
index 0a2ce37..f4f30fb 100644
--- a/src/Tests/LingotekNodeBulkFormPagerTest.php
+++ b/src/Tests/Form/LingotekNodeBulkFormTest.php
@@ -1,11 +1,10 @@
 <?php
 
-namespace Drupal\lingotek\Tests;
+namespace Drupal\lingotek\Tests\Form;
 
-use Drupal\Core\Url;
 use Drupal\language\Entity\ConfigurableLanguage;
 use Drupal\language\Entity\ContentLanguageSettings;
-use Drupal\node\Entity\Node;
+use Drupal\lingotek\Tests\LingotekTestBase;
 use Drupal\node\NodeInterface;
 
 /**
@@ -13,7 +12,7 @@ use Drupal\node\NodeInterface;
  *
  * @group lingotek
  */
-class LingotekNodeBulkFormPagerTest extends LingotekTestBase {
+class LingotekNodeBulkFormTest extends LingotekTestBase {
 
   /**
    * Modules to install.
@@ -108,4 +107,74 @@ class LingotekNodeBulkFormPagerTest extends LingotekTestBase {
     $this->assertUrl('admin/lingotek/manage/node?page=1');
   }
 
+  /**
+   * Tests that the bulk management profile filtering works correctly.
+   */
+  public function testProfileFilter() {
+    $nodes = [];
+    // Create a node.
+    for ($i = 1; $i < 15; $i++) {
+      $profile = 'automatic';
+      if ($i % 2 == 0) {
+        $profile = 'manual';
+      }
+      elseif ($i % 3 == 0) {
+        $profile = 'disabled';
+      }
+
+      $edit = array();
+      $edit['title[0][value]'] = 'Llamas are cool ' . $i ;
+      $edit['body[0][value]'] = 'Llamas are very cool ' . $i;
+      $edit['langcode[0][value]'] = 'en';
+      $edit['lingotek_translation_profile'] = $profile;
+      $this->drupalPostForm('node/add/article', $edit, t('Save and publish'));
+      $nodes[$i] = $edit;
+    }
+
+    $this->goToContentBulkManagementForm();
+
+    // Assert there is a pager.
+    $this->assertLinkByHref('?page=1');
+
+    // After we filter by automatic, there is no pager and we show the right rows.
+    $edit = [
+      'filters[wrapper][profile]' => 'automatic',
+    ];
+    $this->drupalPostForm(NULL, $edit, 'Filter');
+    foreach ([1, 5, 7, 11, 13] as $j) {
+      $this->assertLink('Llamas are cool ' . $j);
+    }
+    $this->assertNoLinkByHref('?page=1');
+    $this->assertNoLink('Llamas are cool 2');
+
+    // After we filter by manual, there is no pager and we show the right rows.
+    $edit = [
+      'filters[wrapper][profile]' => 'manual',
+    ];
+    $this->drupalPostForm(NULL, $edit, 'Filter');
+    foreach ([2, 4, 6, 8, 10, 12, 14] as $j) {
+      $this->assertLink('Llamas are cool ' . $j);
+    }
+    $this->assertNoLink('Page 2');
+    $this->assertNoLink('Llamas are cool 1');
+
+    // After we filter by disabled, there is no pager and we show the right rows.
+    $edit = [
+      'filters[wrapper][profile]' => 'disabled',
+    ];
+    $this->drupalPostForm(NULL, $edit, 'Filter');
+    foreach ([3, 9] as $j) {
+      $this->assertLink('Llamas are cool ' . $j);
+    }
+    $this->assertNoLinkByHref('?page=1');
+    $this->assertNoLink('Llamas are cool 5');
+
+    // After we reset, we get back to having a pager and all the content.
+    $this->drupalPostForm(NULL, [], 'Reset');
+    foreach (range(1, 10) as $j) {
+      $this->assertLink('Llamas are cool ' . $j);
+    }
+    $this->assertLinkByHref('?page=1');
+  }
+
 }
