Skip to content

Commit

Permalink
define integrationTestRoot in config file and use to define screensho…
Browse files Browse the repository at this point in the history
…ts and esArchiver dirs
  • Loading branch information
LeeDr committed Oct 2, 2020
1 parent d6c7128 commit 25c53a4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
*/

import expect from '@kbn/expect';
import { REPO_ROOT } from '@kbn/dev-utils';

export default function ({ getService, getPageObjects, updateBaselines }) {
const screenshot = getService('screenshots');
Expand All @@ -15,7 +14,7 @@ export default function ({ getService, getPageObjects, updateBaselines }) {

describe('check metricbeat Dashboard', function () {
before(async function () {
await esArchiver.load(`${REPO_ROOT}/../integration-test/test/es_archives/metricbeat`);
await esArchiver.load('metricbeat');

// this navigateToActualURL takes the place of navigating to the dashboard landing page,
// filtering on the dashboard name, selecting it, setting the timepicker, and going to full screen
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@ const log = new ToolingLog({
level: 'info',
writeTo: process.stdout,
});
log.info(`REPO_ROOT = ${REPO_ROOT}`);
log.info(`WORKSPACE in config file ${process.env.WORKSPACE}`);
const stateFilePath = process.env.WORKSPACE
? `${process.env.WORKSPACE}/qa/envvars.sh`
: `${REPO_ROOT}/../integration-test/qa/envvars.sh`;

const integrationTestRoot = process.env.WORKSPACE
? process.env.WORKSPACE
: `${REPO_ROOT}/../integration-test`;
log.info(`integrationTestRoot = ${integrationTestRoot}`);

// const stateFilePath = resolve(integrationTestRoot, '/qa/envvars.sh');
const stateFilePath = `${integrationTestRoot}/qa/envvars.sh`;
log.info(`stateFilePath = ${stateFilePath}`);

const prepend = (testFile) => require.resolve(`${testsFolder}/${testFile}`);

Expand All @@ -46,11 +53,11 @@ export default async ({ readConfigFile }) => {
security: { disableTestUser: true },
// choose where screenshots should be saved
screenshots: {
directory: resolve(`${REPO_ROOT}/../integration-test`, 'test/screenshots'),
directory: resolve(integrationTestRoot, 'test/screenshots'),
},
// choose where esArchiver should load archives from
esArchiver: {
directory: resolve(`${REPO_ROOT}/../integration-test`, 'test/es_archives'),
directory: resolve(integrationTestRoot, 'test/es_archives'),
},
};
return settings;
Expand Down

0 comments on commit 25c53a4

Please sign in to comment.