[QA][X Pack] Swap es archiver for kbn archiver - APM specs (#102102) (#117357)

Drop all empty kibana calls

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Tre <wayne.seymour@elastic.co>
This commit is contained in:
Kibana Machine 2021-11-03 13:46:54 -04:00 committed by GitHub
parent 67fe47c3b9
commit affd312c59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,6 @@ import expect from '@kbn/expect';
import { FtrProviderContext } from '../../../ftr_provider_context';
export default function ({ getPageObjects, getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const security = getService('security');
const PageObjects = getPageObjects(['common', 'error', 'security']);
const testSubjects = getService('testSubjects');
@ -18,7 +17,6 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
describe('security', () => {
before(async () => {
await esArchiver.load('x-pack/test/functional/es_archives/empty_kibana');
// ensure we're logged out so we can login as the appropriate users
await PageObjects.security.forceLogout();
});