mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
[Discover] Unskip esql view tests (#196677)
- Closes https://github.com/elastic/kibana/issues/194305 - Closes https://github.com/elastic/kibana/issues/194425 - Closes https://github.com/elastic/kibana/issues/194482
This commit is contained in:
parent
6bb2d77b59
commit
f8c4b9ad7b
2 changed files with 5 additions and 2 deletions
|
@ -268,6 +268,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
|
||||
it('should not show switch modal when switching to a data view while a saved search is open', async () => {
|
||||
await discover.selectTextBaseLang();
|
||||
await header.waitUntilLoadingHasFinished();
|
||||
await discover.waitUntilSearchingHasFinished();
|
||||
const testQuery = 'from logstash-* | limit 100 | drop @timestamp';
|
||||
await monacoEditor.setCodeEditorValue(testQuery);
|
||||
await testSubjects.click('querySubmitButton');
|
||||
|
|
|
@ -35,8 +35,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
defaultIndex: 'logstash-*',
|
||||
};
|
||||
|
||||
// Failing: See https://github.com/elastic/kibana/issues/194305
|
||||
describe.skip('discover esql view', function () {
|
||||
describe('discover esql view', function () {
|
||||
// see details: https://github.com/elastic/kibana/issues/188816
|
||||
this.tags(['failsOnMKI']);
|
||||
|
||||
|
@ -275,6 +274,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
|
||||
it('should not show switch modal when switching to a data view while a saved search is open', async () => {
|
||||
await PageObjects.discover.selectTextBaseLang();
|
||||
await PageObjects.header.waitUntilLoadingHasFinished();
|
||||
await PageObjects.discover.waitUntilSearchingHasFinished();
|
||||
const testQuery = 'from logstash-* | limit 100 | drop @timestamp';
|
||||
await monacoEditor.setCodeEditorValue(testQuery);
|
||||
await testSubjects.click('querySubmitButton');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue