CB-8604 Pended unsupported test for wp8, updated documentation

github close #59
diff --git a/doc/index.md b/doc/index.md
index 99bdeff..0493c00 100644
--- a/doc/index.md
+++ b/doc/index.md
@@ -365,6 +365,8 @@
 
 - __categories__: Not supported, returning `null`.
 
+- __remove__: Method is not supported
+
 ### Windows Quirks
 
 - __photos__: Returns a File URL to the image, which is stored in the application's temporary directory.
@@ -373,6 +375,7 @@
 
 - __categories__: Not supported, returning `null`.
 
+- __remove__: Method is not supported
 
 ## ContactAddress
 
diff --git a/tests/tests.js b/tests/tests.js
index dcd5211..46d9c4e 100644
--- a/tests/tests.js
+++ b/tests/tests.js
@@ -361,9 +361,8 @@
           });
           it("contacts.spec.23 calling remove on a contact that does not exist should return ContactError.UNKNOWN_ERROR", function(done) {
                // remove method is not supported on Windows platform
-              if (isWindows) {
+              if (isWindows || isWindowsPhone8) {
                   pending();
-                  return;
               }
               var rmWin = fail;
               var rmFail = function(result) {