mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Discover] Unskip vis tests (#194020)
- Closees https://github.com/elastic/kibana/issues/184600
This commit is contained in:
parent
be9dd06f74
commit
e1f90cc393
1 changed files with 4 additions and 2 deletions
|
@ -102,8 +102,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
return seriesType;
|
||||
}
|
||||
|
||||
// Failing: See https://github.com/elastic/kibana/issues/184600
|
||||
describe.skip('discover lens vis', function () {
|
||||
describe('discover lens vis', function () {
|
||||
before(async () => {
|
||||
await security.testUser.setRoles(['kibana_admin', 'test_logstash_reader']);
|
||||
await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/logstash_functional');
|
||||
|
@ -174,10 +173,13 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
hasTimeField: true,
|
||||
changeTimestampField: `--- I don't want to use the time filter ---`,
|
||||
});
|
||||
await header.waitUntilLoadingHasFinished();
|
||||
await discover.waitUntilSearchingHasFinished();
|
||||
await checkNoVis(defaultTotalCount);
|
||||
|
||||
await dataViews.editFromSearchBar({ newName: 'logs', newTimeField: '@timestamp' });
|
||||
await header.waitUntilLoadingHasFinished();
|
||||
await discover.waitUntilSearchingHasFinished();
|
||||
await checkHistogramVis(defaultTimespan, defaultTotalCount);
|
||||
expect(await discover.getVisContextSuggestionType()).to.be('histogramForDataView');
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue