Skip to content

Commit

Permalink
Unskip functional test
Browse files Browse the repository at this point in the history
  • Loading branch information
kertal committed Nov 24, 2020
1 parent ac73b6a commit 67bf9fc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/functional/apps/discover/_discover.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ export default function ({ getService, getPageObjects }) {
defaultIndex: 'logstash-*',
};

// Failing: See https://github.com/elastic/kibana/issues/82915
describe.skip('discover test', function describeIndexTests() {
describe('discover test', function describeIndexTests() {
before(async function () {
log.debug('load kibana index with default index pattern');
await esArchiver.load('discover');
Expand Down Expand Up @@ -315,8 +314,8 @@ export default function ({ getService, getPageObjects }) {

const getRequestTimestamp = async () => {
const requestStats = await inspector.getTableData();
const requestTimestamp = requestStats.filter((r) =>
r[0].includes('Request timestamp')
const requestTimestamp = requestStats.filter(
(r) => r && r[0] && r[0].includes('Request timestamp')
)[0][1];
return requestTimestamp;
};
Expand Down

0 comments on commit 67bf9fc

Please sign in to comment.