diff --git a/tests/qunit/crm-backbone/test.js b/tests/qunit/crm-backbone/test.js
index b9c47917b410972a919b0536109866554bbe4e6a..cdf242f7636854693567ea6c0fd3b7118ddb2176 100644
--- a/tests/qunit/crm-backbone/test.js
+++ b/tests/qunit/crm-backbone/test.js
@@ -195,7 +195,7 @@ asyncTest("update (error)", function() {
 
 module('collection - read');
 
-asyncTest("fetch by contact_type (1+ results)", function() {
+asyncTest("fetch by contact_type (passive criteria, 1+ results)", function() {
   var c = new ContactCollection([], {
     crmCriteria: {
       contact_type: 'Organization'
@@ -214,6 +214,55 @@ asyncTest("fetch by contact_type (1+ results)", function() {
   });
 });
 
+asyncTest("fetch by contact_type (active criteria, 1+ results)", function() {
+  var criteria = new Backbone.Model({
+    contact_type: 'Organization'
+  });
+  var c = new ContactCollection([], {
+    crmCriteriaModel: criteria
+  });
+  c.fetch({
+    error: onUnexpectedError,
+    success: function() {
+      ok(c.models.length > 0, "Expected at least one contact");
+      c.each(function(model) {
+        equal(model.get('contact_type'), 'Organization', 'Expected contact with type organization');
+        ok(model.get('display_name') != '', 'Expected contact with valid name');
+      });
+      start();
+    }
+  });
+});
+
+asyncTest("fetch by contact_type (active criteria revision, 1+ results)", function() {
+  var criteria = new Backbone.Model({
+    contact_type: 'Household'
+  });
+  var c = new ContactCollection([], {
+    crmCriteriaModel: criteria
+  });
+  c.fetch({
+    error: onUnexpectedError,
+    success: function() {
+      ok(c.models.length > 0, "Expected at least one contact");
+      c.each(function(model) {
+        equal(model.get('contact_type'), 'Household', 'Expected contact with type household');
+        ok(model.get('display_name') != '', 'Expected contact with valid name');
+      });
+
+      criteria.set('contact_type', 'Organization');
+      _.delay(function() {
+        ok(c.models.length > 0, "Expected at least one contact");
+        c.each(function(model) {
+          equal(model.get('contact_type'), 'Organization', 'Expected contact with type organization');
+          ok(model.get('display_name') != '', 'Expected contact with valid name');
+        });
+        start();
+      }, 1000);
+    }
+  });
+});
+
 asyncTest("fetch by crazy name (0 results)", function() {
   var c = new ContactCollection([], {
     crmCriteria: {