mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
parent
73225daa87
commit
9851b7bcfa
15 changed files with 126 additions and 126 deletions
|
@ -47,16 +47,16 @@ export default function ({ getService }) {
|
|||
const kibanaServer = getService('kibanaServer');
|
||||
|
||||
describe('kibana stats api', () => {
|
||||
before(() =>
|
||||
kibanaServer.importExport.load(
|
||||
before(async () => {
|
||||
await kibanaServer.importExport.load(
|
||||
'test/api_integration/fixtures/kbn_archiver/saved_objects/basic.json'
|
||||
)
|
||||
);
|
||||
after(() =>
|
||||
kibanaServer.importExport.unload(
|
||||
);
|
||||
});
|
||||
after(async () => {
|
||||
await kibanaServer.importExport.unload(
|
||||
'test/api_integration/fixtures/kbn_archiver/saved_objects/basic.json'
|
||||
)
|
||||
);
|
||||
);
|
||||
});
|
||||
|
||||
describe('basic', () => {
|
||||
it('should return the stats without cluster_uuid with no query string params', () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue