mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
[data views] fix fields for wildcard integration test (#164772)
## Summary I'm waiting for this to fail CI - this means that a new ES snapshot is being used. Then we update the test snapshot and should be good to merge. The lastest ES snapshot is returning field types in a different order which really doesn't matter to this endpoint so I'll just update the snapshot. Closes https://github.com/elastic/kibana/issues/164753
This commit is contained in:
parent
bcb99825a7
commit
0d72b8f75b
1 changed files with 5 additions and 6 deletions
|
@ -16,8 +16,7 @@ export default function ({ getService }: FtrProviderContext) {
|
||||||
const supertest = getService('supertest');
|
const supertest = getService('supertest');
|
||||||
const esArchiver = getService('esArchiver');
|
const esArchiver = getService('esArchiver');
|
||||||
|
|
||||||
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/164753
|
describe('conflicts', () => {
|
||||||
describe.skip('conflicts', () => {
|
|
||||||
before(() =>
|
before(() =>
|
||||||
esArchiver.load('test/api_integration/fixtures/es_archiver/index_patterns/conflicts')
|
esArchiver.load('test/api_integration/fixtures/es_archiver/index_patterns/conflicts')
|
||||||
);
|
);
|
||||||
|
@ -46,7 +45,7 @@ export default function ({ getService }: FtrProviderContext) {
|
||||||
{
|
{
|
||||||
name: 'number_conflict',
|
name: 'number_conflict',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
esTypes: ['integer', 'float'],
|
esTypes: ['float', 'integer'],
|
||||||
aggregatable: true,
|
aggregatable: true,
|
||||||
searchable: true,
|
searchable: true,
|
||||||
readFromDocValues: true,
|
readFromDocValues: true,
|
||||||
|
@ -55,16 +54,16 @@ export default function ({ getService }: FtrProviderContext) {
|
||||||
{
|
{
|
||||||
name: 'string_conflict',
|
name: 'string_conflict',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
esTypes: ['text', 'keyword'],
|
esTypes: ['keyword', 'text'],
|
||||||
aggregatable: true,
|
aggregatable: true,
|
||||||
searchable: true,
|
searchable: true,
|
||||||
readFromDocValues: false,
|
readFromDocValues: true,
|
||||||
metadata_field: false,
|
metadata_field: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'success',
|
name: 'success',
|
||||||
type: 'conflict',
|
type: 'conflict',
|
||||||
esTypes: ['boolean', 'keyword'],
|
esTypes: ['keyword', 'boolean'],
|
||||||
aggregatable: true,
|
aggregatable: true,
|
||||||
searchable: true,
|
searchable: true,
|
||||||
readFromDocValues: false,
|
readFromDocValues: false,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue