Skip to content

Commit

Permalink
paths and version changed
Browse files Browse the repository at this point in the history
  • Loading branch information
rashmivkulkarni committed Jul 1, 2021
1 parent 8cf67af commit d930d87
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
describe('feature controls security', () => {
before(async () => {
await kibanaServer.importExport.load(
'x-pack/test/functional/fixtures/kbn_archiver/timelion.json'
'x-pack/test/functional/fixtures/kbn_archiver/timelion/feature_controls.json'
);
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/logstash_functional');
});

after(async () => {
await kibanaServer.importExport.unload(
'x-pack/test/functional/fixtures/kbn_archiver/timelion.json'
'x-pack/test/functional/fixtures/kbn_archiver/timelion/feature_controls.json'
);
await esArchiver.unload('x-pack/test/functional/es_archives/logstash_functional');
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
// a space deletes all of the associated saved objects
// await esArchiver.load('x-pack/test/functional/es_archives/timelion/feature_controls');
await kibanaServer.importExport.load(
'x-pack/test/functional/fixtures/kbn_archiver/timelion.json'
'x-pack/test/functional/fixtures/kbn_archiver/timelion/feature_controls.json'
);

await spacesService.create({
Expand All @@ -36,15 +36,15 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});

await kibanaServer.importExport.load(
'x-pack/test/functional/fixtures/kbn_archiver/timelion_custom_space.json',
'x-pack/test/functional/fixtures/kbn_archiver/timelion/timelion_custom_space.json',
{ space: 'custom_space' }
);
});

after(async () => {
await spacesService.delete('custom_space');
await kibanaServer.importExport.unload(
'x-pack/test/functional/fixtures/kbn_archiver/timelion.json'
'x-pack/test/functional/fixtures/kbn_archiver/timelion/feature_controls.json'
);
});

Expand Down Expand Up @@ -73,7 +73,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
// await esArchiver.load('x-pack/test/functional/es_archives/timelion/feature_controls');

await kibanaServer.importExport.load(
'x-pack/test/functional/fixtures/kbn_archiver/timelion.json'
'x-pack/test/functional/fixtures/kbn_archiver/timelion/feature_controls.json'
);

await spacesService.create({
Expand All @@ -83,15 +83,15 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});

await kibanaServer.importExport.load(
'x-pack/test/functional/fixtures/kbn_archiver/timelion_custom_space.json',
'x-pack/test/functional/fixtures/kbn_archiver/timelion/timelion_custom_space.json',
{ space: 'custom_space' }
);
});

after(async () => {
await spacesService.delete('custom_space');
await kibanaServer.importExport.unload(
'x-pack/test/functional/fixtures/kbn_archiver/timelion.json'
'x-pack/test/functional/fixtures/kbn_archiver/timelion/feature_controls.json'
);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"buildNum": 9007199254740991,
"defaultIndex": "logstash-*"
},
"coreMigrationVersion": "8.0.0",
"coreMigrationVersion": "7.14.0",
"id": "7.0.0",
"migrationVersion": {
"config": "7.13.0"
Expand All @@ -28,7 +28,7 @@
"title": "i-exist",
"version": 1
},
"coreMigrationVersion": "8.0.0",
"coreMigrationVersion": "7.14.0",
"id": "i-exist",
"references": [],
"type": "timelion-sheet",
Expand All @@ -41,7 +41,7 @@
"timeFieldName": "@timestamp",
"title": "logstash-*"
},
"coreMigrationVersion": "8.0.0",
"coreMigrationVersion": "7.14.0",
"id": "logstash-*",
"migrationVersion": {
"index-pattern": "7.11.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"title": "i-exist",
"version": 1
},
"coreMigrationVersion": "8.0.0",
"coreMigrationVersion": "7.14.0",
"id": "i-exist",
"references": [],
"type": "timelion-sheet",
Expand Down

0 comments on commit d930d87

Please sign in to comment.