forked from AirtestProject/iOS-Tagent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
22 lines (19 loc) · 682 Bytes
/
Copy pathindex.js
File metadata and controls
22 lines (19 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import * as dependencies from './lib/check-dependencies';
import * as proxies from './lib/no-session-proxy';
import * as driver from './lib/webdriveragent';
import * as constants from './lib/constants';
import * as utils from './lib/utils';
const { checkForDependencies, bundleWDASim } = dependencies;
const { NoSessionProxy } = proxies;
const { WebDriverAgent } = driver;
const { WDA_BASE_URL, WDA_RUNNER_BUNDLE_ID, PROJECT_FILE } = constants;
const { resetTestProcesses, BOOTSTRAP_PATH } = utils;
export {
WebDriverAgent,
NoSessionProxy,
checkForDependencies, bundleWDASim,
resetTestProcesses,
BOOTSTRAP_PATH,
WDA_RUNNER_BUNDLE_ID, PROJECT_FILE,
WDA_BASE_URL,
};