2020-10-21 17:25:13 +00:00
|
|
|
const getAppRoot = require( './app-root' );
|
2021-01-13 11:27:11 +00:00
|
|
|
const { getAppName, getAppBase } = require( './app-name' );
|
2021-11-26 19:14:49 +00:00
|
|
|
const testConfig = require( './test-config' );
|
2021-12-15 20:59:17 +00:00
|
|
|
const {
|
|
|
|
getRemotePluginZip,
|
|
|
|
getLatestReleaseZipUrl,
|
|
|
|
deleteDownloadedPluginFiles,
|
|
|
|
} = require( './get-plugin-zip' );
|
2021-04-14 13:05:03 +00:00
|
|
|
const takeScreenshotFor = require( './take-screenshot' );
|
2021-12-15 20:59:17 +00:00
|
|
|
const updateReadyPageStatus = require( './update-ready-page' );
|
2021-05-26 11:20:08 +00:00
|
|
|
const consoleUtils = require( './filter-console' );
|
2020-04-02 13:41:06 +00:00
|
|
|
|
|
|
|
module.exports = {
|
2021-01-13 11:27:11 +00:00
|
|
|
getAppBase,
|
2020-09-15 13:10:59 +00:00
|
|
|
getAppRoot,
|
2020-08-10 17:54:10 +00:00
|
|
|
getAppName,
|
2021-07-15 20:39:32 +00:00
|
|
|
getRemotePluginZip,
|
2021-08-11 02:29:36 +00:00
|
|
|
getLatestReleaseZipUrl,
|
2021-12-08 22:56:42 +00:00
|
|
|
deleteDownloadedPluginFiles,
|
2021-04-14 13:05:03 +00:00
|
|
|
takeScreenshotFor,
|
2021-06-30 19:31:49 +00:00
|
|
|
updateReadyPageStatus,
|
2021-11-26 19:14:49 +00:00
|
|
|
...testConfig,
|
2021-05-26 11:20:08 +00:00
|
|
|
...consoleUtils,
|
2020-04-02 13:41:06 +00:00
|
|
|
};
|