Skip to content

Commit c364b8e

Browse files
committed
add: configurable base url for easy testing
1 parent 475ccad commit c364b8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/browserstack/appautomate/AppAutomateClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class AppAutomateClient extends BrowserStackClient implements AppAutomate
2727
private static final String BASE_URL = "https://api-cloud.browserstack.com/app-automate";
2828

2929
public AppAutomateClient(String username, String accessKey) {
30-
super(BASE_URL, username, accessKey);
30+
super(System.getProperty("browserstack.app-automate.api", BASE_URL), username, accessKey);
3131
}
3232

3333
/**

0 commit comments

Comments
 (0)