mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Fixed the query to make sure results contain the expected document. (#134154)
This commit is contained in:
parent
90e46180fe
commit
68e569bd7d
1 changed files with 3 additions and 1 deletions
|
@ -37,7 +37,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
await PageObjects.console.clearTextArea();
|
||||
});
|
||||
it('it should be able to access remote data', async () => {
|
||||
await PageObjects.console.enterRequest('\nGET ftr-remote:logstash-*/_search');
|
||||
await PageObjects.console.enterRequest(
|
||||
'\nGET ftr-remote:logstash-*/_search\n {\n "query": {\n "bool": {\n "must": [\n {"match": {"extension" : "jpg"'
|
||||
);
|
||||
await PageObjects.console.clickPlay();
|
||||
await retry.try(async () => {
|
||||
const actualResponse = await PageObjects.console.getResponse();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue