mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Fix es_archives path (#101737)
This commit is contained in:
parent
7917e3c9d9
commit
7b51debbbb
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue