Skip to content

Commit

Permalink
added empty skeleton for Event Log FTs
Browse files Browse the repository at this point in the history
  • Loading branch information
gmmorris committed Mar 31, 2020
1 parent 2d3f783 commit 0263507
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions x-pack/test/plugin_api_integration/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export default async function({ readConfigFile }) {
testFiles: [
require.resolve('./test_suites/task_manager'),
require.resolve('./test_suites/encrypted_saved_objects'),
require.resolve('./test_suites/event_log'),
],
services,
servers: integrationConfig.get('servers'),
Expand Down
13 changes: 13 additions & 0 deletions x-pack/test/plugin_api_integration/test_suites/event_log/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* 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.
*/

export default function({ loadTestFile }) {
describe('event_log', function taskManagerSuite() {
this.tags('ciGroup2');
loadTestFile(require.resolve('./public_api_integration'));
loadTestFile(require.resolve('./service_api_integration'));
});
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* 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.
*/

export default function() {
describe('Event Log public API', () => {
it('should allow querying for events by Saved Object', async () => {});
});
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* 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.
*/

export default function() {
describe('Event Log service API', () => {
it('should allow logging an event', async () => {});
});
}

0 comments on commit 0263507

Please sign in to comment.