no hardcoded api path, making this reusable
diff --git a/spec/projectApi.spec.js b/spec/projectApi.spec.js
index 5f5b090..c780ce9 100644
--- a/spec/projectApi.spec.js
+++ b/spec/projectApi.spec.js
@@ -17,7 +17,10 @@
  under the License.
  */
 
-var Api = require("../src/cordova/Api");
+var Api = require("..");
+/*
+    Note: require is expecting the package.json to define "main" with the path to Api.js for the platform.
+*/
 
 describe('can get the Api', function() {