Skip to content

Commit

Permalink
Fix some failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecote committed Jan 22, 2019
1 parent debab2f commit 739f33d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,20 @@
"updated_at": {
"type": "date"
},
"references": {
"type": "nested",
"properties": {
"name": {
"type": "keyword"
},
"type": {
"type": "keyword"
},
"id": {
"type": "keyword"
}
}
},
"url": {
"properties": {
"accessCount": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,11 @@ export const search = {
],
version: 1,
kibanaSavedObjectMeta: {
searchSourceJSON: '{\'index\':\'kibanaSavedObjectMeta.searchSourceJSON.index\',\'query\':{\'query_string\':'
+ '{\'query\':\'geo.dest: IN\',\'analyze_wildcard\':true}},\'filter\':[],\'highlight\':{\'pre_tags\':'
+ '[\'@kibana-highlighted-field@\'],\'post_tags\':[\'@/kibana-highlighted-field@\'],\'fields\':{\'*\':{}},'
+ '\'require_field_match\':false,\'fragment_size\':2147483647}}'
},
references: [{
name: 'kibanaSavedObjectMeta.searchSourceJSON.index',
type: 'index-pattern',
id: 'logstash-*',
}]
searchSourceJSON: '{\'index\':\'logstash-*\',\'query\':{\'query_string\':{\'query\':\'geo.dest: IN\','
+ '\'analyze_wildcard\':true}},\'filter\':[],\'highlight\':{\'pre_tags\':[\'@kibana-highlighted-field@\'],'
+ '\'post_tags\':[\'@/kibana-highlighted-field@\'],\'fields\':{\'*\':{}},\'require_field_match\':false,'
+ '\'fragment_size\':2147483647}}'
}
}
};

Expand Down

0 comments on commit 739f33d

Please sign in to comment.