The TestFairy enterprise suite can be installed on a private cloud on any AWS location in the US, Europe, Asia, or South America. Servers can be protected by custom firewall rules allowing access only from your offices, according to your security policy.

With this installation, all data is stored privately using your own resources.

Setting Your Endpoint

Once you've got your private cloud setup, make sure to get the URL endpoint your app will direct all of its data towards. This URL must be passed into the SDK before the begin method is called.

Syntax

TestFairy.setServerEndpoint("<your private cloud url here>");

Code Example

// Be sure to import TestFairy
import com.testfairy.TestFairy;

TestFairy.setServerEndpoint("my-subdomain.testfairy.com");
TestFairy.begin(context, "<your app token here>");
      

Syntax

[TestFairy setServerEndpoint:@"<your private cloud url here>"];

Code Example

// Be sure to import TestFairy
#import "TestFairy.h"

[TestFairy setServerEndpoint:@"my-subdomain.testfairy.com"];
[TestFairy begin:@"<your app token here>"];
      

Syntax

TestFairy.setServerEndpoint("<your private cloud url here>");

Code Example

TestFairy.setServerEndpoint("my-subdomain.testfairy.com");
TestFairy.begin("<your app token here>");
      

Syntax

TestFairy.setServerEndpoint("<your private cloud url here>");

Code Example

// Be sure to import TestFairy
const TestFairy = require('react-native-testfairy');

TestFairy.setServerEndpoint("my-subdomain.testfairy.com");
TestFairy.begin("<your app token here>");
      

Syntax

TestFairySDK.setServerEndpoint("<your private cloud url here>");

Code Example

// Be sure to import TestFairy
import { TestFairySDK } from 'nativescript-testfairy';

TestFairySDK.setServerEndpoint("my-subdomain.testfairy.com");
TestFairySDK.begin("<your app token here>");
      

Syntax

TestFairy.SetServerEndpoint ("<your private cloud url here>");

Code Example

// Be sure to import TestFairy
using TestFairyLib;

TestFairy.SetServerEndpoint ("my-subdomain.testfairy.com");
TestFairy.Begin ("<your app token here>");
      

Syntax

TestFairy.setServerEndpoint("<your private cloud url here>");

Code Example

// Be sure to import TestFairy
using TestFairyUnity;

TestFairy.setServerEndpoint("my-subdomain.testfairy.com");
TestFairy.begin("<your app token here>");
      

Syntax

AirTestFairy.setServerEndpoint("<your private cloud url here>");

Code Example

// Be sure to import TestFairy
import com.testfairy.AirTestFairy;

AirTestFairy.setServerEndpoint("my-subdomain.testfairy.com");
AirTestFairy.begin("<your app token here>");
      

Syntax

TiTestFairy.setServerEndpoint("<your private cloud url here>");

Code Example

// Be sure to import TestFairy
var TiTestFairy = require('com.testfairy.titestfairy');

TiTestFairy.setServerEndpoint("my-subdomain.testfairy.com");
TiTestFairy.begin("<your app token here>");
      

Last updated on 2023-05-23