CB-8096 Pended recently added spec.12 if accelerometer doesn't exist on the device
diff --git a/tests/tests.js b/tests/tests.js
index 84cb799..d7c5ec9 100644
--- a/tests/tests.js
+++ b/tests/tests.js
@@ -172,6 +172,10 @@
         });
 
         it("accelerometer.spec.12 success callback should be preserved and called several times", function (done) {
+            // skip the test if Accelerometer doesn't exist on this device
+            if (!isAccelExist) {
+              pending();
+            }
             var callbacksCallCount = 0,
                 callbacksCallTestCount = 3;