Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix es_archives path #101737

Merged
merged 1 commit into from
Jun 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function ({ getService, getPageObjects, updateBaselines }) {

describe('check metricbeat Dashboard', function () {
before(async function () {
await esArchiver.load('metricbeat');
await esArchiver.load('../integration-test/test/es_archives/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 Expand Up @@ -44,6 +44,10 @@ export default function ({ getService, getPageObjects, updateBaselines }) {
await browser.setScreenshotSize(1000, 1000);
});

after(async function () {
await esArchiver.unload('../integration-test/test/es_archives/metricbeat');
});

it('[Metricbeat System] Overview ECS should match snapshot', async function () {
try {
const percentDifference = await screenshot.compareAgainstBaseline(
Expand Down