Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "crmtest", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Salesforce ScriptTest Framework using Node.JS", | ||
@@ -5,0 +5,0 @@ "main": "scripttest.js", |
@@ -45,6 +45,6 @@ ynopsis | ||
###Tests | ||
1. First create the crmtest object | ||
* First create the crmtest object | ||
* var crmtest = require('./crmtest.js'); | ||
2. Start Invoking supported crmtest methods. Currently crmtest support following features | ||
* Start Invoking supported crmtest methods. Currently crmtest support following features | ||
* **Get OAuth access Token** : In order to get oAuth access token we should invoke the getoauth method | ||
@@ -68,3 +68,3 @@ | ||
3. **Create an account record** | ||
* **Create an account record** | ||
```javascript | ||
@@ -77,3 +77,3 @@ response = crmtest.createaccount("Account Name", accessToken); | ||
4. **Upload a File in Chatter feed** | ||
* **Upload a File in Chatter feed** | ||
```javascript | ||
@@ -90,3 +90,3 @@ response = crmtest.insertChatterFeedFile("/Users/Documents/pdf.pdf", "File Name","Title", accessToken); | ||
5. **Get the status of File rendition** | ||
* **Get the status of File rendition** | ||
```javascript | ||
@@ -102,5 +102,5 @@ response = crmtest.fileavailability(fileId,"thumbnail", accessToken); | ||
###Run crmtest in Amazon ec2 | ||
1. Follow the tutorial and set up an instance http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EC2_GetStarted.html | ||
2. CrmTest has been verified on the **Ubuntu** version of Amazon ec2 | ||
3. Install the required Java binaries | ||
* Follow the tutorial and set up an instance http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EC2_GetStarted.html | ||
* CrmTest has been verified on the **Ubuntu** version of Amazon ec2 | ||
* Install the required Java binaries | ||
```bash | ||
@@ -107,0 +107,0 @@ **JDK** |
5549116