mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Files] Don't use dot index name in server integration tests (#202180)
This commit is contained in:
parent
95a7b0c044
commit
766b9f32ec
2 changed files with 3 additions and 3 deletions
|
@ -19,8 +19,8 @@ describe('ES-index-backed file client', () => {
|
|||
let esClient: TestEnvironmentUtils['esClient'];
|
||||
let fileClient: FileClient;
|
||||
let testHarness: TestEnvironmentUtils;
|
||||
const blobStorageIndex = '.kibana-test-blob';
|
||||
const metadataIndex = '.kibana-test-metadata';
|
||||
const blobStorageIndex = 'kibana-files-test-blob';
|
||||
const metadataIndex = 'kibana-files-test-metadata';
|
||||
|
||||
const deleteFile = async ({
|
||||
id,
|
||||
|
|
|
@ -21,7 +21,7 @@ export type TestEnvironmentUtils = Awaited<ReturnType<typeof setupIntegrationEnv
|
|||
|
||||
export async function setupIntegrationEnvironment() {
|
||||
const fileKind: string = 'test-file-kind';
|
||||
const testIndex = '.kibana-test-files';
|
||||
const testIndex = 'kibana-test-files';
|
||||
|
||||
/**
|
||||
* Functionality to create files easily
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue