Skip to content

Commit 43d90a6

Browse files
Merge branch '7.x' into backport/7.x/pr-71794
2 parents c487739 + 44b534c commit 43d90a6

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed

x-pack/test/api_integration/apis/fleet/agent_flow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default function (providerContext: FtrProviderContext) {
1818
const supertestWithoutAuth = getSupertestWithoutAuth(providerContext);
1919
const esClient = getService('es');
2020

21-
describe.skip('fleet_agent_flow', () => {
21+
describe('fleet_agent_flow', () => {
2222
before(async () => {
2323
await esArchiver.load('empty_kibana');
2424
});

x-pack/test/api_integration/apis/fleet/agents/enroll.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ export default function (providerContext: FtrProviderContext) {
2121
let apiKey: { id: string; api_key: string };
2222
let kibanaVersion: string;
2323

24-
// Temporarily skipped to promote snapshot
25-
// Re-enabled in https://github.com/elastic/kibana/pull/71727
26-
describe.skip('fleet_agents_enroll', () => {
24+
describe('fleet_agents_enroll', () => {
2725
before(async () => {
2826
await esArchiver.loadIfNeeded('fleet/agents');
2927

x-pack/test/api_integration/apis/fleet/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
*/
66

77
export default function loadTests({ loadTestFile }) {
8-
describe('Fleet Endpoints', () => {
8+
// Temporarily skipped to promote snapshot
9+
// Re-enabled in https://github.com/elastic/kibana/pull/71727
10+
describe.skip('Fleet Endpoints', () => {
911
loadTestFile(require.resolve('./setup'));
1012
loadTestFile(require.resolve('./delete_agent'));
1113
loadTestFile(require.resolve('./list_agent'));

x-pack/test/api_integration/apis/fleet/setup.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ export default function ({ getService }: FtrProviderContext) {
1111
const supertest = getService('supertest');
1212
const es = getService('es');
1313

14-
// Temporarily skipped to promote snapshot
15-
// Re-enabled in https://github.com/elastic/kibana/pull/71727
16-
describe.skip('fleet_setup', () => {
14+
describe('fleet_setup', () => {
1715
beforeEach(async () => {
1816
try {
1917
await es.security.deleteUser({

x-pack/test/api_integration/apis/fleet/unenroll_agent.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ export default function (providerContext: FtrProviderContext) {
1616
const supertest = getService('supertest');
1717
const esClient = getService('es');
1818

19-
// Temporarily skipped to promote snapshot: https://github.com/elastic/kibana/issues/68587
20-
// Re-enabled in https://github.com/elastic/kibana/pull/71727
21-
describe.skip('fleet_unenroll_agent', () => {
19+
describe('fleet_unenroll_agent', () => {
2220
let accessAPIKeyId: string;
2321
let outputAPIKeyId: string;
2422
before(async () => {

0 commit comments

Comments
 (0)