kibana/x-pack/test_utils/jest/contract_tests/global_setup.ts
2019-08-05 11:15:03 -04:00

14 lines
479 B
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import { _createSharedServer } from './servers';
// eslint-disable-next-line import/no-default-export
export default async function globalSetup() {
if (process.env.CONTRACT_ONLINE === 'true') {
await _createSharedServer();
}
}